Added the ability to view logs from the settings menu

This commit is contained in:
Isaac Grynsztein
2020-06-22 23:15:21 -04:00
parent 09d8ce04d7
commit 2998562655
14 changed files with 94 additions and 6 deletions

View File

@@ -234,6 +234,10 @@ export class PostsService implements CanActivate {
return this.http.post(this.path + 'getVideoInfos', {fileNames: fileNames, type: type, urlMode: urlMode}, this.httpOptions);
}
getLogs() {
return this.http.get(this.path + 'logs', this.httpOptions);
}
isPinSet() {
return this.http.post(this.path + 'isPinSet', {}, this.httpOptions);
}