Изменения механизма ограничения доступа

This commit is contained in:
Book Pauk
2022-11-27 18:34:01 +07:00
parent 59b4f48897
commit abb3baf94b
3 changed files with 18 additions and 0 deletions

View File

@@ -262,6 +262,11 @@ class Api {
async getConfig() {
return await this.request({action: 'get-config'});
}
async logout() {
await this.request({action: 'logout'});
await this.request({action: 'test'});
}
}
export default vueComponent(Api);