mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-25 10:11:24 +00:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
|
from django.db.models import signals
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class ConstanceConfig(AppConfig):
|
||
|
name = 'constance'
|
||
|
verbose_name = 'Constance'
|
||
|
|
||
|
def ready(self):
|
||
|
super(ConstanceConfig, self).ready()
|
||
|
signals.post_migrate.connect(self.create_perm,
|
||
|
dispatch_uid='constance.create_perm')
|
||
|
|
||
|
def create_perm(self, using=None, *args, **kwargs):
|
||
|
"""
|
||
|
Creates a fake content type and permission
|
||
|
to be able to check for permissions
|
||
|
"""
|
||
|
from django.conf import settings
|
||
|
from django.contrib.auth.models import Permission
|
||
|
from django.contrib.contenttypes.models import ContentType
|
||
|
|
||
|
constance_dbs = getattr(settings, 'CONSTANCE_DBS', None)
|
||
|
if constance_dbs is not None and using not in constance_dbs:
|
||
|
return
|
||
|
if ContentType._meta.installed and Permission._meta.installed:
|
||
|
content_type, created = ContentType.objects.using(using).get_or_create(
|
||
|
app_label='constance',
|
||
|
model='config',
|
||
|
)
|
||
|
|
||
|
permission, created = Permission.objects.using(using).get_or_create(
|
||
|
content_type=content_type,
|
||
|
codename='change_config',
|
||
|
defaults={'name': 'Can change config'})
|