0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-12-06 11:22:41 +01:00

added include functionality and update endpoint to resource controller

This commit is contained in:
Jonathan Treffler 2024-11-16 03:10:27 +01:00
parent 9ebae48238
commit 7679506494
3 changed files with 111 additions and 8 deletions

View file

@ -6,5 +6,7 @@ return [
'routes' => [
/* Resources */
['name' => 'resource#show', 'url' => '/resources/{resourceId}', 'verb' => 'GET'],
]
['name' => 'resource#create', 'url' => '/resources/{resourceId}', 'verb' => 'POST'],
['name' => 'resource#update', 'url' => '/resources/{resourceId}', 'verb' => 'PUT'],
],
];