Disabled capacitor and add camera integration

This commit is contained in:
Tiago Kayaya
2020-12-11 18:00:38 +01:00
parent 5496953f63
commit d4d08c6039
111 changed files with 182 additions and 2338 deletions
+6 -6
View File
@@ -56,24 +56,24 @@ export class AuthService {
}
//Get user data from RocketChat
getUserData(){
/* getUserData(){
this.storageService.get(AuthConnstants.AUTH).then(res=>{
this.userData$.next(res);
})
}
} */
getProfile(){
/* getProfile(){
this.storageService.get(AuthConnstants.PROFILE).then(res=>{
return res;
});
}
} */
logoutChat(){
//this.storageService.clear();
this.storageService.removeStorageItem(AuthConnstants.AUTH).then(res =>{
/* this.storageService.removeStorageItem(AuthConnstants.AUTH).then(res =>{
this.userData$.next('');
this.router.navigate(['']);
})
}) */
}