Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
C
cp_video_dokku
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexandr Dzehil
cp_video_dokku
Commits
8a969793
Commit
8a969793
authored
Mar 21, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix playlist videos can blank
parent
5bd10758
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletion
+25
-1
0003_alter_playlist_videos_alter_video_local_file.py
...ions/0003_alter_playlist_videos_alter_video_local_file.py
+24
-0
models.py
apps/core/models.py
+1
-1
No files found.
apps/core/migrations/0003_alter_playlist_videos_alter_video_local_file.py
0 → 100644
View file @
8a969793
# Generated by Django 4.1.7 on 2023-03-21 11:17
import
apps.core.utils
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'core'
,
'0002_category_tag_alter_video_options_and_more'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'playlist'
,
name
=
'videos'
,
field
=
models
.
ManyToManyField
(
blank
=
True
,
related_name
=
'playlist'
,
to
=
'core.video'
),
),
migrations
.
AlterField
(
model_name
=
'video'
,
name
=
'local_file'
,
field
=
models
.
FileField
(
blank
=
True
,
null
=
True
,
upload_to
=
apps
.
core
.
utils
.
asset_upload
,
verbose_name
=
'local file'
),
),
]
apps/core/models.py
View file @
8a969793
...
...
@@ -165,7 +165,7 @@ class Video(BaseModel):
class
Playlist
(
BaseModel
):
title
=
models
.
CharField
(
_
(
'title'
),
max_length
=
255
)
description
=
models
.
TextField
(
_
(
'description'
),
blank
=
True
,
null
=
True
)
videos
=
models
.
ManyToManyField
(
Video
,
related_name
=
'playlist'
)
videos
=
models
.
ManyToManyField
(
Video
,
related_name
=
'playlist'
,
blank
=
True
)
sort
=
models
.
CharField
(
choices
=
SORT_CHOICES
,
max_length
=
255
,
blank
=
True
)
type
=
models
.
CharField
(
choices
=
TYPE_CHOICES
,
max_length
=
255
,
blank
=
True
)
mrss
=
models
.
CharField
(
_
(
'mrss'
),
max_length
=
255
,
blank
=
True
,
null
=
True
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment