Move contact posts to their own module class
- Remove duplicated check for local_user() in Module\Contact - [frio] Fix display issue for search items where the More button and icon would show but be inactive
This commit is contained in:
parent
25455eab63
commit
eacfcc69c1
5 changed files with 107 additions and 39 deletions
|
@ -338,7 +338,7 @@ return [
|
|||
'/{id:\d+}/ignore' => [Module\Contact::class, [R::GET]],
|
||||
'/{id:\d+}/media' => [Module\Contact\Media::class, [R::GET]],
|
||||
'/{id:\d+}/poke' => [Module\Contact\Poke::class, [R::GET, R::POST]],
|
||||
'/{id:\d+}/posts' => [Module\Contact::class, [R::GET]],
|
||||
'/{id:\d+}/posts' => [Module\Contact\Posts::class, [R::GET]],
|
||||
'/{id:\d+}/revoke' => [Module\Contact\Revoke::class, [R::GET, R::POST]],
|
||||
'/{id:\d+}/update' => [Module\Contact::class, [R::GET]],
|
||||
'/{id:\d+}/updateprofile' => [Module\Contact::class, [R::GET]],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue