Added ability to register/login through LDAP

- Added ability to edit LDAP settings and whether to use LDAP or not in the users tab in the settings
This commit is contained in:
Isaac Abadi
2020-08-26 04:18:29 -04:00
parent c9016f446d
commit babba9aa30
9 changed files with 396 additions and 57 deletions

View File

@@ -384,7 +384,7 @@ export class PostsService implements CanActivate {
// user methods
login(username, password) {
const call = this.http.post(this.path + 'auth/login', {userid: username, password: password}, this.httpOptions);
const call = this.http.post(this.path + 'auth/login', {username: username, password: password}, this.httpOptions);
return call;
}