mirror of
https://github.com/documize/community.git
synced 2025-07-21 22:29:41 +02:00
Set user admin max results and Keycloak sync option
This commit is contained in:
parent
2c8b757ff6
commit
351b8dcc12
13 changed files with 100 additions and 31 deletions
|
@ -1,11 +1,11 @@
|
|||
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
||||
//
|
||||
// This software (Documize Community Edition) is licensed under
|
||||
// This software (Documize Community Edition) is licensed under
|
||||
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
||||
//
|
||||
// You can operate outside the AGPL restrictions by purchasing
|
||||
// Documize Enterprise Edition and obtaining a commercial license
|
||||
// by contacting <sales@documize.com>.
|
||||
// by contacting <sales@documize.com>.
|
||||
//
|
||||
// https://documize.com
|
||||
|
||||
|
@ -34,8 +34,11 @@ export default Base.extend({
|
|||
authenticate(data) {
|
||||
data.domain = netUtil.getSubdomain();
|
||||
|
||||
if (!isPresent(data.token) || !isPresent(data.email)) {
|
||||
return reject("invalid");
|
||||
if (!isPresent(data.token)) {
|
||||
return reject("data.token is empty");
|
||||
}
|
||||
if (!isPresent(data.email)) {
|
||||
return reject("data.email is empty");
|
||||
}
|
||||
|
||||
return this.get('ajax').post('public/authenticate/keycloak', {
|
||||
|
@ -45,7 +48,7 @@ export default Base.extend({
|
|||
},
|
||||
|
||||
invalidate() {
|
||||
this.get('localStorage').clearAll();
|
||||
this.get('localStorage').clearAll();
|
||||
return this.get('kcAuth').logout();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue