-
-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into fix-constance-man…
…agement-command-without-admin-installed
- Loading branch information
Showing
29 changed files
with
351 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,6 @@ dist/ | |
test.db | ||
.tox | ||
.coverage | ||
coverage.xml | ||
docs/_build | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,12 @@ | ||
from django.db.models import signals | ||
from django.apps import apps, AppConfig | ||
from django.apps import AppConfig | ||
from django.utils.translation import gettext_lazy as _ | ||
|
||
|
||
class ConstanceConfig(AppConfig): | ||
name = 'constance' | ||
verbose_name = _('Constance') | ||
default_auto_field = 'django.db.models.AutoField' | ||
|
||
def ready(self): | ||
super().ready() | ||
signals.post_migrate.connect(self.create_perm, | ||
dispatch_uid='constance.create_perm') | ||
from . import checks | ||
|
||
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 | ||
|
||
constance_dbs = getattr(settings, 'CONSTANCE_DBS', None) | ||
if constance_dbs is not None and using not in constance_dbs: | ||
return | ||
if ( | ||
apps.is_installed('django.contrib.contenttypes') and | ||
apps.is_installed('django.contrib.auth') | ||
): | ||
ContentType = apps.get_model('contenttypes.ContentType') | ||
Permission = apps.get_model('auth.Permission') | ||
content_type, created = ContentType.objects.using(using).get_or_create( | ||
app_label='constance', | ||
model='config', | ||
) | ||
|
||
Permission.objects.using(using).get_or_create( | ||
content_type=content_type, | ||
codename='change_config', | ||
defaults={'name': 'Can change config'}, | ||
) | ||
Permission.objects.using(using).get_or_create( | ||
content_type=content_type, | ||
codename='view_config', | ||
defaults={'name': 'Can view config'}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
constance/backends/database/migrations/0002_auto_20190129_2304.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.