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
magicfelix
AlekSIS-Core
Commits
2dc81a0e
Commit
2dc81a0e
authored
2 years ago
by
Julian
Browse files
Options
Downloads
Patches
Plain Diff
Always deliver logo even if maintenance mode is turned on
parent
a9973acd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/urls.py
+2
-1
2 additions, 1 deletion
aleksis/core/urls.py
with
2 additions
and
1 deletion
aleksis/core/urls.py
+
2
−
1
View file @
2dc81a0e
...
...
@@ -11,6 +11,7 @@ import calendarweek.django
from
ckeditor_uploader
import
views
as
ckeditor_uploader_views
from
graphene_django.views
import
GraphQLView
from
health_check.urls
import
urlpatterns
as
health_urls
from
maintenance_mode.decorators
import
force_maintenance_mode_off
from
oauth2_provider.views
import
ConnectDiscoveryInfoView
from
rules.contrib.views
import
permission_required
from
two_factor.urls
import
urlpatterns
as
tf_urls
...
...
@@ -24,7 +25,7 @@ urlpatterns = [
path
(
settings
.
MEDIA_URL
.
removeprefix
(
"
/
"
),
include
(
"
titofisto.urls
"
)),
path
(
"
__icons__/
"
,
include
(
"
dj_iconify.urls
"
)),
path
(
"
graphql/
"
,
csrf_exempt
(
GraphQLView
.
as_view
(
graphiql
=
True
)),
name
=
"
graphql
"
),
path
(
"
logo
"
,
views
.
LogoView
.
as_view
(),
name
=
"
logo
"
),
path
(
"
logo
"
,
force_maintenance_mode_off
(
views
.
LogoView
.
as_view
()
)
,
name
=
"
logo
"
),
path
(
"
.well-known/openid-configuration/
"
,
ConnectDiscoveryInfoView
.
as_view
(),
...
...
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