-
Notifications
You must be signed in to change notification settings - Fork 0
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 #108 from maykinmedia/feature/42-add-keycloak-idp-…
…hint Add keycloak IDP hint and logout endpoint
- Loading branch information
Showing
13 changed files
with
1,284 additions
and
5 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
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
33 changes: 33 additions & 0 deletions
33
...lla_django_oidc_db/migrations/0003_openidconnectconfig_oidc_keycloak_idp_hint_and_more.py
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,33 @@ | ||
# Generated by Django 5.0.4 on 2024-05-25 19:36 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("mozilla_django_oidc_db", "0002_migrate_to_claim_field"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="openidconnectconfig", | ||
name="oidc_keycloak_idp_hint", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Specific for Keycloak: parameter that indicates which identity provider should be used (therefore skipping the Keycloak login screen).", | ||
max_length=1000, | ||
verbose_name="Keycloak Identity Provider hint", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="openidconnectconfig", | ||
name="oidc_op_logout_endpoint", | ||
field=models.URLField( | ||
blank=True, | ||
help_text="URL of your OpenID Connect provider logout endpoint", | ||
max_length=1000, | ||
verbose_name="Logout endpoint", | ||
), | ||
), | ||
] |
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
33 changes: 33 additions & 0 deletions
33
testapp/migrations/0002_emptyconfig_oidc_keycloak_idp_hint_and_more.py
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,33 @@ | ||
# Generated by Django 5.0.4 on 2024-05-25 19:37 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("testapp", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="emptyconfig", | ||
name="oidc_keycloak_idp_hint", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Specific for Keycloak: parameter that indicates which identity provider should be used (therefore skipping the Keycloak login screen).", | ||
max_length=1000, | ||
verbose_name="Keycloak Identity Provider hint", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="emptyconfig", | ||
name="oidc_op_logout_endpoint", | ||
field=models.URLField( | ||
blank=True, | ||
help_text="URL of your OpenID Connect provider logout endpoint", | ||
max_length=1000, | ||
verbose_name="Logout endpoint", | ||
), | ||
), | ||
] |
Oops, something went wrong.