Skip to content

Commit

Permalink
fix: intro/outro playlist unset was impossible (#3101)
Browse files Browse the repository at this point in the history
this reinstates the boolean fields in the database from the original PR
to work around a foreign key contraint. THE UI remains unchanged
libretime/libretime@7992a9b
  • Loading branch information
libretime-bot committed Oct 21, 2024
1 parent 29ea528 commit 1660a8c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6412,9 +6412,13 @@ components:
intro_playlist:
type: integer
nullable: true
override_intro_playlist:
type: boolean
outro_playlist:
type: integer
nullable: true
override_outro_playlist:
type: boolean
PatchedShowDays:
type: object
properties:
Expand Down Expand Up @@ -7250,9 +7254,13 @@ components:
intro_playlist:
type: integer
nullable: true
override_intro_playlist:
type: boolean
outro_playlist:
type: integer
nullable: true
override_outro_playlist:
type: boolean
required:
- auto_playlist_enabled
- auto_playlist_repeat
Expand All @@ -7261,6 +7269,8 @@ components:
- linked
- live_enabled
- name
- override_intro_playlist
- override_outro_playlist
ShowDays:
type: object
properties:
Expand Down

0 comments on commit 1660a8c

Please sign in to comment.