1
0
Fork 0

Create new Post/Share module class

This commit is contained in:
Hypolite Petovan 2022-11-04 13:01:25 -04:00
commit 8124dedbf6
5 changed files with 86 additions and 9 deletions

View file

@ -534,6 +534,7 @@ return [
'/ping' => [Module\Notifications\Ping::class, [R::GET]],
'/post' => [
'/{post_id}/share' => [Module\Post\Share::class, [R::GET ]],
'/{item_id}/tag/add' => [Module\Post\Tag\Add::class, [ R::POST]],
'/{item_id}/tag/remove[/{tag_name}]' => [Module\Post\Tag\Remove::class, [R::GET, R::POST]],
],