-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1108 from maykinmedia/feature/2197-block-eherkenn…
…ing-for-zzp-and-openzaak 🥅 [#2197] Block eHerkenning login for ZZP if RSIN is required
- Loading branch information
Showing
7 changed files
with
298 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from django.urls import path | ||
|
||
from digid_eherkenning_oidc_generics.eherkenning_urls import urlpatterns | ||
|
||
from .views import CustomEHerkenningOIDCAuthenticationCallbackView | ||
|
||
app_name = "eherkenning_oidc" | ||
|
||
|
||
urlpatterns = [ | ||
path( | ||
"callback/", | ||
CustomEHerkenningOIDCAuthenticationCallbackView.as_view(), | ||
name="callback", | ||
), | ||
] + urlpatterns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.