This commit is contained in:
Bastian Wagner
2024-12-27 20:57:37 +01:00
parent 5194298fa6
commit 5363d0880f
33 changed files with 640 additions and 50 deletions

View File

@@ -46,6 +46,10 @@ export class ApiService {
return this.http.get<any[]>('api/system');
}
getSystemManagers(id: string): Observable<IUser[]> {
return this.http.get<any[]>(`api/system/${id}/manager`);
}
handoverKey(data: any) {
return this.http.post(`api/key/${data.key.id}/handover`, data);
}