FIxing a lot of issues and adding org data
This commit is contained in:
parent
4350a24132
commit
a4268360f7
12 changed files with 327 additions and 11 deletions
|
@ -345,4 +345,15 @@ export class ApiService {
|
|||
}
|
||||
);
|
||||
}
|
||||
|
||||
// Basic Customer User stats API
|
||||
public orgStats() {
|
||||
const key = this.sessionKey;
|
||||
return this.http.post<any>(
|
||||
this.apiUrl + '/stats/organisation',
|
||||
{
|
||||
session_key : key,
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue