Skip to content

Commit

Permalink
feat: enable back channel logout
Browse files Browse the repository at this point in the history
Refs: PS-154
  • Loading branch information
charn committed Nov 26, 2024
1 parent 6a5017f commit 294c002
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions haravajarjestelma/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@
"REQUIRE_API_SCOPE_FOR_AUTHENTICATION": env.bool("TOKEN_AUTH_REQUIRE_SCOPE_PREFIX"),
}

HELUSERS_BACK_CHANNEL_LOGOUT_ENABLED = True

REST_FRAMEWORK = {
"DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.LimitOffsetPagination",
"PAGE_SIZE": 100,
Expand Down
1 change: 1 addition & 0 deletions haravajarjestelma/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
urlpatterns = [
path("admin/", admin.site.urls),
path("v1/", include((router.urls, "haravajarjestelma"), namespace="v1")),
path("helauth/", include("helusers.urls")),
]


Expand Down

0 comments on commit 294c002

Please sign in to comment.