add synchro

This commit is contained in:
Peter Maquiran
2021-08-30 10:24:46 +01:00
parent e953831a73
commit 4309d01376
24 changed files with 338 additions and 113 deletions
+1 -2
View File
@@ -13,7 +13,6 @@ class SessionService {
private _user = new UserSession()
// local storage keyName
private keyName: string;
private _needTovalidateUser = false
constructor() {
@@ -53,7 +52,7 @@ class SessionService {
return this._user.PIN == SHA1(pin).toString()
}
needTovalidateUser() {
needToValidateUser() {
return this._user.Inactivity
}