From 2bb0d1ca8b6d6952d7876ab2644a86489466b37a Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 19 May 2018 21:06:28 -0600 Subject: [PATCH] Add routes config --- config/routes.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 config/routes.php diff --git a/config/routes.php b/config/routes.php new file mode 100644 index 000000000..3b6e5e162 --- /dev/null +++ b/config/routes.php @@ -0,0 +1,16 @@ + [ + '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/', + ], + +]; \ No newline at end of file