Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
3f0616c8
Verified
Commit
3f0616c8
authored
5 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Add system check for app base classes
parent
0392be85
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!154
Maintain default data and implement app hooks
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/checks.py
+29
-0
29 additions, 0 deletions
aleksis/core/checks.py
with
29 additions
and
0 deletions
aleksis/core/checks.py
0 → 100644
+
29
−
0
View file @
3f0616c8
from
typing
import
Optional
import
django.apps
from
django.core.checks
import
Tags
,
Warning
,
register
from
.util.apps
import
AppConfig
@register
(
Tags
.
compatibility
)
def
check_app_configs_base_class
(
app_configs
:
Optional
[
django
.
apps
]
=
None
,
**
kwargs
)
->
None
:
"""
Checks whether all apps derive from AlekSIS
'
s base app config
"""
results
=
[]
if
app_configs
is
None
:
app_configs
=
django
.
apps
.
get_app_configs
()
for
app_config
in
app_configs
:
if
app_config
.
name
.
startswith
(
"
aleksis.apps.
"
)
and
not
isinstance
(
app_config
,
AppConfig
):
results
.
append
(
Warning
(
"
App config %s does not derive from aleksis.core.util.apps.AppConfig.
"
,
hint
=
"
Ensure the app uses the correct base class for all registry functionality to work.
"
,
obj
=
app_config
,
id
=
"
aleksis.core.W001
"
,
)
)
return
results
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment