mirror of
https://github.com/django/django.git
synced 2025-05-20 22:06:30 +00:00
Refs #27661 -- Added Tags.staticfiles.
Follow up to 0ec4dc91e0e7befdd06aa0613b5d0fbe3c785ee7.
This commit is contained in:
parent
01f8d19ef9
commit
b23e3a1caa
@ -10,4 +10,4 @@ class StaticFilesConfig(AppConfig):
|
|||||||
ignore_patterns = ['CVS', '.*', '*~']
|
ignore_patterns = ['CVS', '.*', '*~']
|
||||||
|
|
||||||
def ready(self):
|
def ready(self):
|
||||||
checks.register(check_finders, 'staticfiles')
|
checks.register(check_finders, checks.Tags.staticfiles)
|
||||||
|
@ -15,6 +15,7 @@ class Tags:
|
|||||||
models = 'models'
|
models = 'models'
|
||||||
security = 'security'
|
security = 'security'
|
||||||
signals = 'signals'
|
signals = 'signals'
|
||||||
|
staticfiles = 'staticfiles'
|
||||||
templates = 'templates'
|
templates = 'templates'
|
||||||
translation = 'translation'
|
translation = 'translation'
|
||||||
urls = 'urls'
|
urls = 'urls'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user