Skip to content

Commit

Permalink
Introduce EnvSource Auth OpenIDC multivalue delimiter option
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis committed Mar 4, 2026
1 parent 6b253a6 commit 4179585
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/plugins/EnvSource/resources/locales/en_US/env_source.po
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ msgstr "Shibboleth"
msgid "enumeration.EnvSourceSpModeEnum.SS"
msgstr "SimpleSamlPhp"

msgid "enumeration.EnvSourceSpModeEnum.AO"
msgstr "Auth OpenIDC"

msgid "error.lookaside_file"
msgstr "Lookaside File {0} could not be parsed"

Expand Down
1 change: 1 addition & 0 deletions app/plugins/EnvSource/src/Lib/Enum/EnvSourceSpModeEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@
class EnvSourceSpModeEnum extends StandardEnum {
const Shibboleth = 'SH';
const SimpleSamlPhp = 'SS';
const AuthOpenidc = 'AO';
const Other = 'O';
}
1 change: 1 addition & 0 deletions app/plugins/EnvSource/src/Model/Table/EnvSourcesTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ protected function resultToEntityData(
$mails = explode(";", $result['env_mail']);
break;
case EnvSourceSpModeEnum::SimpleSamlPhp:
case EnvSourceSpModeEnum::AuthOpenidc:
$mails = explode(",", $result['env_mail']);
break;
default:
Expand Down

0 comments on commit 4179585

Please sign in to comment.