sync.externalId to externalId

This commit is contained in:
2025-05-05 11:41:49 -04:00
parent 76ce7e42d4
commit 0a10b06cc8
4 changed files with 4 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ The following properties provide the core functionality of this extension. That
| Property | Default | Description |
| ---------------------------------------------- | --------- | ----------- |
| `auth-ext.sync.externalId` | `oauth` | This will serve as the external ID for users and as the prefix for the external ID of groups created by this extension. |
| `auth-ext.externalId` | `oauth` | This will serve as the external ID for users and as the prefix for the external ID of groups created by this extension. |
| `auth-ext.tenant` | | A preselected tenant for all operations in this extension. Only required if there are multiple tenants. |
| `auth-ext.sync.user.createMissing` | `true` | If the user is authenticated, the user may be created in APS. |
| `auth-ext.sync.user.requireGroup` | | This is only applicable when `createMissing` is `true`. If this is unset or the OAuth Authorization Server gives the user the specified group/role, then the user record will be created in APS. |

View File

@@ -64,7 +64,7 @@ public class ActivitiAppAdministratorGroupFixer implements DataFixer {
@Value("${auth-ext.group.admins.name:Superusers}")
private String adminGroupName;
@Value("${auth-ext.sync.externalId:oauth}")
@Value("${auth-ext.externalId:oauth}")
protected String externalIdmSource;
@Value("${auth-ext.group.admins.validate:false}")

View File

@@ -56,7 +56,7 @@ public class GroupSyncService {
@Autowired
private TenantFinderService tenantFinderService;
@Value("${auth-ext.sync.externalId:oauth}")
@Value("${auth-ext.externalId:oauth}")
protected String externalIdmSource;
@Value("${auth-ext.sync.group.createMissing:true}")

View File

@@ -36,7 +36,7 @@ public class UserSyncService {
@Autowired
private TenantFinderService tenantFinderService;
@Value("${auth-ext.sync.externalId:oauth}")
@Value("${auth-ext.externalId:oauth}")
protected String externalIdmSource;
@Value("${auth-ext.sync.user.createMissing:true}")