Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Commits
8cbcc741
Verified
Commit
8cbcc741
authored
8 months ago
by
Ernesto Rico Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
feat: update codes & readable names
parent
3903ad0f
No related branches found
No related tags found
No related merge requests found
Pipeline
#8286
passed
8 months ago
Stage: check
Stage: test
Stage: build
Stage: deploy
Stage: release
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
program/migrations/0107_alter_show_options_alter_timeslot_options.py
+55
-0
55 additions, 0 deletions
...rations/0107_alter_show_options_alter_timeslot_options.py
program/models.py
+2
-2
2 additions, 2 deletions
program/models.py
with
57 additions
and
2 deletions
program/migrations/0107_alter_show_options_alter_timeslot_options.py
0 → 100644
+
55
−
0
View file @
8cbcc741
# Generated by Django 4.2.13 on 2024-07-03 19:42
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
"
program
"
,
"
0106_alter_schedule_options
"
),
]
operations
=
[
migrations
.
AlterModelOptions
(
name
=
"
show
"
,
options
=
{
"
ordering
"
:
(
"
slug
"
,),
"
permissions
"
:
[
(
"
display__show__internal_note
"
,
"
Can display internal note field
"
),
(
"
edit__show__categories
"
,
"
Can edit category field
"
),
(
"
edit__show__cba_series_id
"
,
"
Can edit cba series id field
"
),
(
"
edit__show__default_playlist_id
"
,
"
Can edit default media source
"
),
(
"
edit__show__description
"
,
"
Can edit description field
"
),
(
"
edit__show__email
"
,
"
Can edit email field
"
),
(
"
edit__show__funding_categories
"
,
"
Can edit funding category field
"
),
(
"
edit__show__hosts
"
,
"
Can edit hosts field
"
),
(
"
edit__show__image
"
,
"
Can edit image field
"
),
(
"
edit__show__internal_note
"
,
"
Can edit internal note field
"
),
(
"
edit__show__is_active
"
,
"
Can edit is active field
"
),
(
"
edit__show__languages
"
,
"
Can edit language field
"
),
(
"
edit__show__links
"
,
"
Can edit links field
"
),
(
"
edit__show__logo
"
,
"
Can edit logo field
"
),
(
"
edit__show__music_focuses
"
,
"
Can edit music focus field
"
),
(
"
edit__show__name
"
,
"
Can edit name field
"
),
(
"
edit__show__owners
"
,
"
Can edit owners field
"
),
(
"
edit__show__predecessor
"
,
"
Can edit predecessor field
"
),
(
"
edit__show__short_description
"
,
"
Can edit short description field
"
),
(
"
edit__show__slug
"
,
"
Can edit slug field
"
),
(
"
edit__show__topics
"
,
"
Can edit topic field
"
),
(
"
edit__show__type
"
,
"
Can edit type field
"
),
(
"
update_show
"
,
"
Can update show
"
),
],
},
),
migrations
.
AlterModelOptions
(
name
=
"
timeslot
"
,
options
=
{
"
ordering
"
:
(
"
start
"
,
"
end
"
),
"
permissions
"
:
[
(
"
edit__timeslot__memo
"
,
"
Can edit memo field
"
),
(
"
edit__timeslot__playlist_id
"
,
"
Can edit media source
"
),
(
"
edit__timeslot__repetition_of
"
,
"
Can edit repetition of field
"
),
],
},
),
]
This diff is collapsed.
Click to expand it.
program/models.py
+
2
−
2
View file @
8cbcc741
...
...
@@ -274,7 +274,7 @@ class Show(models.Model):
(
"
display__show__internal_note
"
,
"
Can display internal note field
"
),
(
"
edit__show__categories
"
,
"
Can edit category field
"
),
(
"
edit__show__cba_series_id
"
,
"
Can edit cba series id field
"
),
(
"
edit__show__default_playlist
"
,
"
Can edit default
playlist field
"
),
(
"
edit__show__default_playlist
_id
"
,
"
Can edit default
media source
"
),
(
"
edit__show__description
"
,
"
Can edit description field
"
),
(
"
edit__show__email
"
,
"
Can edit email field
"
),
(
"
edit__show__funding_categories
"
,
"
Can edit funding category field
"
),
...
...
@@ -452,7 +452,7 @@ class TimeSlot(models.Model):
ordering
=
(
"
start
"
,
"
end
"
)
permissions
=
[
(
"
edit__timeslot__memo
"
,
"
Can edit memo field
"
),
(
"
edit__timeslot__playlist
"
,
"
Can edit
playlist field
"
),
(
"
edit__timeslot__playlist
_id
"
,
"
Can edit
media source
"
),
(
"
edit__timeslot__repetition_of
"
,
"
Can edit repetition of field
"
),
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment