add show total users in rocket chat server

This commit is contained in:
Tiago Kayaya
2020-10-30 15:22:35 +01:00
parent 4a7df21759
commit 21eb3d3cf1
63 changed files with 970 additions and 139 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Injectable } from '@angular/core';
import { AuthService } from '../services/auth.service';
@Injectable({
providedIn: 'root'
})
export class UserDataResolver{
constructor(private authService: AuthService){}
resolve(){
return this.authService.getUserData();
}
}