project can be public (default) or private
This commit is contained in:
parent
e870608072
commit
00b8ae612d
5 changed files with 27 additions and 4 deletions
20
issue/migrations/0005_project_public.py
Normal file
20
issue/migrations/0005_project_public.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('issue', '0004_milestone_closed'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='project',
|
||||
name='public',
|
||||
field=models.BooleanField(default=True, verbose_name='Do unregistered users have read access to this project?'),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue