mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add routes config
This commit is contained in:
parent
950fddf9e3
commit
2bb0d1ca8b
1 changed files with 16 additions and 0 deletions
16
config/routes.php
Normal file
16
config/routes.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'api' => [
|
||||
'base' => config('app.url') . '/api/1/',
|
||||
'sharedInbox' => config('app.url') . '/api/sharedInbox',
|
||||
'search' => config('app.url') . env('MIX_API_SEARCH'),
|
||||
],
|
||||
|
||||
'hashtag' => [
|
||||
'base' => config('app.url') . '/discover/tags/',
|
||||
'search' => config('app.url') . '/discover/tags/',
|
||||
],
|
||||
|
||||
];
|
Loading…
Reference in a new issue