Code cleanup
This commit is contained in:
parent
358fb234a7
commit
a1cd3d4609
@ -6,13 +6,13 @@ from django.db import migrations, models
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0006_service_hide_referrer_regex'),
|
||||
("core", "0006_service_hide_referrer_regex"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='service',
|
||||
name='ignore_robots',
|
||||
model_name="service",
|
||||
name="ignore_robots",
|
||||
field=models.BooleanField(default=False),
|
||||
)
|
||||
]
|
||||
|
@ -286,14 +286,14 @@ else:
|
||||
NPM_ROOT_PATH = "../"
|
||||
|
||||
NPM_FILE_PATTERNS = {
|
||||
'a17t': ['dist/a17t.css'],
|
||||
'@fortawesome/fontawesome-free': ['js/all.min.js'],
|
||||
'tailwindcss': ['dist/tailwind.min.css'],
|
||||
'apexcharts': ['dist/apexcharts.min.js'],
|
||||
'litepicker': ['dist/js/main.js'],
|
||||
'turbolinks': ['dist/turbolinks.js'],
|
||||
'stimulus': ['dist/stimulus.umd.js'],
|
||||
'inter-ui': ['Inter (web)/*'],
|
||||
"a17t": ["dist/a17t.css"],
|
||||
"@fortawesome/fontawesome-free": ["js/all.min.js"],
|
||||
"tailwindcss": ["dist/tailwind.min.css"],
|
||||
"apexcharts": ["dist/apexcharts.min.js"],
|
||||
"litepicker": ["dist/js/main.js"],
|
||||
"turbolinks": ["dist/turbolinks.js"],
|
||||
"stimulus": ["dist/stimulus.umd.js"],
|
||||
"inter-ui": ["Inter (web)/*"],
|
||||
}
|
||||
|
||||
# Shynet
|
||||
|
@ -21,6 +21,6 @@ urlpatterns = [
|
||||
path("accounts/", include("allauth.urls")),
|
||||
path("ingress/", include(("analytics.ingress_urls", "ingress")), name="ingress"),
|
||||
path("dashboard/", include(("dashboard.urls", "dashboard"), namespace="dashboard")),
|
||||
path("healthz/", include('health_check.urls')),
|
||||
path("healthz/", include("health_check.urls")),
|
||||
path("", include(("core.urls", "core"), namespace="core")),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user