mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
Add basic page view permission, not really working
This commit is contained in:
18
core/migrations/0006_auto_20151125_0855.py
Normal file
18
core/migrations/0006_auto_20151125_0855.py
Normal file
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0005_auto_20151124_1219'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='page',
|
||||
options={'permissions': (('can_view', 'Can view the page'),)},
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user