Created UpdateTagAction

This commit is contained in:
Alejandro Celaya
2017-07-15 12:04:12 +02:00
parent e07c464de8
commit 963d26f59b
7 changed files with 236 additions and 0 deletions

View File

@@ -65,6 +65,12 @@ return [
'middleware' => Action\Tag\CreateTagsAction::class,
'allowed_methods' => [RequestMethod::METHOD_POST],
],
[
'name' => Action\Tag\UpdateTagAction::class,
'path' => '/rest/v{version:1}/tags',
'middleware' => Action\Tag\UpdateTagAction::class,
'allowed_methods' => [RequestMethod::METHOD_PUT],
],
],
];