mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	Refactor/group page (#666)
* refactor(backend): ♻️ Refactor base class to be abstract and create a router factory method * feat(frontend): ✨ add group edit * refactor(backend): ✨ add group edit support Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
		
							
								
								
									
										25
									
								
								frontend/api/class-interfaces/group-webhooks.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								frontend/api/class-interfaces/group-webhooks.ts
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| import { BaseCRUDAPI } from "./_base"; | ||||
|  | ||||
| const prefix = "/api"; | ||||
|  | ||||
| const routes = { | ||||
|   webhooks: `${prefix}/groups/webhooks`, | ||||
|   webhooksId: (id: string | number) => `${prefix}/groups/webhooks/${id}`, | ||||
| }; | ||||
|  | ||||
| export interface CreateGroupWebhook { | ||||
|   enabled: boolean; | ||||
|   name: string; | ||||
|   url: string; | ||||
|   time: string; | ||||
| } | ||||
|  | ||||
| export interface GroupWebhook extends CreateGroupWebhook { | ||||
|   id: string; | ||||
|   groupId: string; | ||||
| } | ||||
|  | ||||
| export class WebhooksAPI extends BaseCRUDAPI<GroupWebhook, CreateGroupWebhook> { | ||||
|   baseRoute = routes.webhooks; | ||||
|   itemRoute = routes.webhooksId; | ||||
| } | ||||
		Reference in New Issue
	
	Block a user