Implement hashing bypass for groups
This commit is contained in:
22
core/migrations/0007_perms.py
Normal file
22
core/migrations/0007_perms.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# Generated by Django 4.0.6 on 2022-08-16 18:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0006_contentblock_page'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Perms',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
],
|
||||
options={
|
||||
'permissions': (('bypass_hashing', 'Can bypass field hashing'), ('bypass_blacklist', 'Can bypass the blacklist'), ('bypass_encryption', 'Can bypass field encryption'), ('post_irc', 'Can post to IRC'), ('post_discord', 'Can post to Discord')),
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user