create cylinder

This commit is contained in:
Bastian Wagner
2025-01-02 16:53:16 +01:00
parent 5c6516095b
commit a47bbe29fe
11 changed files with 175 additions and 9 deletions

View File

@@ -111,4 +111,8 @@ export class ApiService {
getActivities(): Observable<any[]> {
return this.http.get<any[]>('api/user/activities');
}
createCylinder(data: any) {
return this.http.post<ICylinder>('api/cylinder', data);
}
}