1
0
Fork 0

Add Module\Profile\Common class

- Add Common tab in profile contacts templates
- Add routing to new module
This commit is contained in:
Hypolite Petovan 2020-08-04 23:03:54 -04:00
commit 71db6ab613
5 changed files with 123 additions and 0 deletions

View file

@ -252,6 +252,7 @@ return [
'/profile' => [
'/{nickname}' => [Module\Profile\Index::class, [R::GET]],
'/{nickname}/profile' => [Module\Profile\Profile::class, [R::GET]],
'/{nickname}/contacts/common' => [Module\Profile\Common::class, [R::GET]],
'/{nickname}/contacts[/{type}]' => [Module\Profile\Contacts::class, [R::GET]],
'/{nickname}/status[/{category}[/{date1}[/{date2}]]]' => [Module\Profile\Status::class, [R::GET]],
],