feat: implement admin product management panel with bulk categorization and premium user toggle

This commit is contained in:
Nils-Johan Gynther
2026-04-25 08:36:40 +02:00
parent e2b7b884aa
commit a02950c97a
9 changed files with 383 additions and 34 deletions
+5
View File
@@ -6,12 +6,17 @@ class ProductApiPaths {
static const list = '/products';
static const pending = '/products/pending';
static String setStatus(int id) => '/products/$id/status';
static const bulkUpdate = '/products/bulk-update';
}
class AiApiPaths {
static const models = '/ai/models';
}
class CategoryApiPaths {
static const tree = '/categories/tree';
}
class RecipeApiPaths {
static const list = '/recipes';
static String detail(int id) => '/recipes/$id';