Private kb categories

This commit is contained in:
Timothy Hobbs
2020-01-27 17:37:59 +01:00
parent 0395f26d6c
commit ecbb91b861
9 changed files with 91 additions and 9 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.9 on 2020-01-27 16:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('helpdesk', '0028_kbitem_team'),
]
operations = [
migrations.AddField(
model_name='kbcategory',
name='public',
field=models.BooleanField(default=True, verbose_name='Is KBCategory publicly visible?'),
),
]