sync.externalId to externalId
This commit is contained in:
@@ -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. |
|
||||
|
@@ -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}")
|
||||
|
@@ -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}")
|
||||
|
@@ -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}")
|
||||
|
Reference in New Issue
Block a user