Add routes config

pull/9/head
Daniel Supernault 2018-05-19 21:06:28 -06:00
rodzic 950fddf9e3
commit 2bb0d1ca8b
1 zmienionych plików z 16 dodań i 0 usunięć

16
config/routes.php 100644
Wyświetl plik

@ -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/',
],
];