-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #523 from FaySmash/tweaked
Add support for indexing Streams
- Loading branch information
Showing
4 changed files
with
61 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from django.db import migrations, models | ||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('sync', '0024_auto_20240717_1535'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='source', | ||
name='index_videos', | ||
field=models.BooleanField(default=True, help_text='Index video media from this source', verbose_name='index videos'), | ||
), | ||
migrations.AddField( | ||
model_name='source', | ||
name='index_streams', | ||
field=models.BooleanField(default=False, help_text='Index live stream media from this source', verbose_name='index streams'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters