mirror of
https://github.com/documize/community.git
synced 2025-07-23 15:19:42 +02:00
add/remove group membership
This commit is contained in:
parent
0b5ed8fd9e
commit
ed11c0ad11
17 changed files with 287 additions and 87 deletions
|
@ -30,12 +30,12 @@ export default Route.extend(AuthenticatedRouteMixin, {
|
|||
return new EmberPromise((resolve) => {
|
||||
if (this.get('appMeta.authProvider') == constants.AuthProvider.Keycloak) {
|
||||
this.get('global').syncExternalUsers().then(() => {
|
||||
this.get('userService').getComplete().then((users) =>{
|
||||
this.get('userService').getComplete('').then((users) =>{
|
||||
resolve(users);
|
||||
});
|
||||
});
|
||||
} else {
|
||||
this.get('userService').getComplete().then((users) => {
|
||||
this.get('userService').getComplete('').then((users) => {
|
||||
resolve(users);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue