update navigation + profile

This commit is contained in:
_Bastler
2021-09-23 13:53:08 +02:00
parent 53ac145165
commit 1c0be5e1ea
25 changed files with 469 additions and 204 deletions
@@ -66,4 +66,20 @@ export class ParteyTimeslotsService {
return this.http.delete(environment.apiUrl + "/partey/timeslots/" + id);
}
}
@Injectable({
providedIn: 'root',
})
export class ParteyTagsService {
constructor(private http: HttpClient) {
}
get() {
return this.http.get(environment.apiUrl + "/partey/tags");
}
}