Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
anis
anis-server
Commits
e060333f
Commit
e060333f
authored
Nov 03, 2020
by
François Agneray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Methods put and delete added for GroupAction
parent
ae0c3c13
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
app/routes.php
app/routes.php
+1
-1
No files found.
app/routes.php
View file @
e060333f
...
...
@@ -21,7 +21,7 @@ $app->map([OPTIONS, GET, PUT, DELETE], '/project/{name}', App\Action\ProjectActi
$app
->
map
([
OPTIONS
,
GET
,
POST
],
'/user'
,
App\Action\UserListAction
::
class
);
$app
->
map
([
OPTIONS
,
GET
,
PUT
,
DELETE
],
'/user/{email}'
,
App\Action\UserAction
::
class
);
$app
->
map
([
OPTIONS
,
GET
,
POST
],
'/group'
,
App\Action\GroupListAction
::
class
);
$app
->
map
([
OPTIONS
,
GET
,
P
OST
],
'/group/{id}'
,
App\Action\GroupAction
::
class
);
$app
->
map
([
OPTIONS
,
GET
,
P
UT
,
DELETE
],
'/group/{id}'
,
App\Action\GroupAction
::
class
);
$app
->
map
([
OPTIONS
,
GET
,
POST
],
'/instance'
,
App\Action\InstanceListAction
::
class
);
$app
->
map
([
OPTIONS
,
GET
,
PUT
,
DELETE
],
'/instance/{name}'
,
App\Action\InstanceAction
::
class
);
$app
->
map
([
OPTIONS
,
GET
,
POST
],
'/instance/{name}/dataset-family'
,
App\Action\DatasetFamilyListAction
::
class
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment