feat: remove a skill category empty

This commit is contained in:
Julien Froidefond
2025-08-26 07:10:26 +02:00
parent e12816a9c2
commit d7fef0be9b
8 changed files with 176 additions and 4 deletions

View File

@@ -55,6 +55,10 @@ export class AdminClient extends BaseHttpClient {
await this.delete(`/admin/skills?id=${skillId}`);
}
async deleteSkillCategory(categoryId: string): Promise<void> {
await this.delete(`/admin/skills/categories/${categoryId}`);
}
// Teams Management
async getTeams(): Promise<Team[]> {
return await this.get<Team[]>(`/admin/teams`);