Removed pin setting functionality

- Simplifies security options: use multi user mode if you want to restrict access to the settings menu
This commit is contained in:
Isaac Grynsztein
2020-07-09 22:33:07 -04:00
parent 14bd82c508
commit dd80c51f16
11 changed files with 1 additions and 246 deletions

View File

@@ -242,18 +242,6 @@ export class PostsService implements CanActivate {
return this.http.post(this.path + 'clearAllLogs', {}, this.httpOptions);
}
isPinSet() {
return this.http.post(this.path + 'isPinSet', {}, this.httpOptions);
}
setPin(unhashed_pin) {
return this.http.post(this.path + 'setPin', {pin: unhashed_pin}, this.httpOptions);
}
checkPin(unhashed_pin) {
return this.http.post(this.path + 'checkPin', {input_pin: unhashed_pin}, this.httpOptions);
}
generateNewAPIKey() {
return this.http.post(this.path + 'generateNewAPIKey', {}, this.httpOptions);
}