Zylinder angefangen
This commit is contained in:
@@ -33,10 +33,6 @@ export class ApiService {
|
||||
return this.http.put<IKey>('api/key', key);
|
||||
}
|
||||
|
||||
getCylinders(): Observable<any[]> {
|
||||
return this.http.get<any[]>('api/key/cylinder');
|
||||
}
|
||||
|
||||
createKey(key: any) {
|
||||
return this.http.post<IKey>('api/key', key);
|
||||
}
|
||||
@@ -72,4 +68,8 @@ export class ApiService {
|
||||
restoreKey(id: string) {
|
||||
return this.http.put(`api/key/${id}/restore`, null);
|
||||
}
|
||||
|
||||
getCylinders(): Observable<any[]> {
|
||||
return this.http.get<any[]>('api/cylinder');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user