Merge pull request #87 from cyberjacob/watch-all-videos

Allow watching of all videos in a channel, folder, or other view sequentially
This commit is contained in:
chibicitiberiu
2019-11-30 12:42:52 +02:00
committed by GitHub
6 changed files with 148 additions and 13 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.5 on 2019-10-18 21:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('YtManagerApp', '0012_auto_20190819_1615'),
]
operations = [
migrations.AddField(
model_name='video',
name='duration',
field=models.IntegerField(default=0),
),
]