removed auth-ext.group.admins.externalId in favor of auth-ext.externalId

This commit is contained in:
2025-05-07 08:51:41 -04:00
parent c38c1d28df
commit 187e558177
2 changed files with 1 additions and 2 deletions

View File

@@ -104,7 +104,6 @@ This fixer does not execute unless the `auth-ext.default.admin-users` property i
| ------------------------------------ | ------------ | ----------- |
| `auth-ext.default.admins.users` | | A comma delimited list of user emails. |
| `auth-ext.group.admins.name` | `Superusers` | The APS Group (Capability or Organization) for the specified users to be members. |
| `auth-ext.group.admins.externalId` | | If specified, the external APS Group will take precedence over the internal APS Group; if both exist. |
#### Administrator Group Fixer

View File

@@ -58,7 +58,7 @@ public class ActivitiAppAdministratorMembersFixer implements DataFixer {
@Value("${auth-ext.group.admins.name:Superusers}")
private String adminGroupName;
@Value("${auth-ext.group.admins.externalId:#{null}}")
@Value("${auth-ext.externalId:oauth}")
private String adminGroupExternalId;
@Override