# SPDX-License-Identifier: AGPL-3.0-or-later """ URLs for the Single Sign On module. """ from django.urls import re_path from stronghold.decorators import public from plinth.utils import non_admin_view from .views import SSOLoginView, refresh urlpatterns = [ re_path(r'^accounts/sso/login/$', public(SSOLoginView.as_view()), name='sso-login'), re_path(r'^accounts/sso/refresh/$', non_admin_view(refresh), name='sso-refresh'), ]