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
Merge requests
!11
Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Develop
develop
into
master
Overview
0
Commits
4
Pipelines
0
Changes
7
Merged
Ernesto Rico Schmidt
requested to merge
develop
into
master
4 years ago
Overview
0
Commits
4
Pipelines
0
Changes
7
Expand
0
0
Merge request reports
Viewing commit
2f91ad60
Prev
Next
Show latest version
7 files
+
49
−
6
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
Unverified
2f91ad60
Merge branch 'develop' of
https://gitlab.servus.at/aura/steering
into develop
· 2f91ad60
Ernesto Rico Schmidt
authored
4 years ago
program/migrations/0022_show_is_public.py
0 → 100644
+
20
−
0
Options
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2019-09-18 12:48
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
program
'
,
'
0021_show_is_active
'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'
show
'
,
name
=
'
is_public
'
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
'
Files and Playlists of Public Shows can only be changed by owners but may be used by everyone.
'
,
verbose_name
=
'
Is Public?
'
),
),
]
Loading