diff options
author | Marvin Borner | 2018-08-24 13:17:32 +0200 |
---|---|---|
committer | Marvin Borner | 2018-08-24 13:17:32 +0200 |
commit | 0ee38e98532a9daf7ba08ab65b7f73d6505e0aea (patch) | |
tree | 6ff916179bb4ebe14369ea99b84109dc6e52ba13 /infrastructure | |
parent | 3045cb39be8b9c9cb3ca6ed643ccceac0042f0c0 (diff) |
Began API for posts
Diffstat (limited to 'infrastructure')
-rw-r--r-- | infrastructure/Api/Controllers/DefaultApiController.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/infrastructure/Api/Controllers/DefaultApiController.php b/infrastructure/Api/Controllers/DefaultApiController.php index cb850a5..c9f35d0 100644 --- a/infrastructure/Api/Controllers/DefaultApiController.php +++ b/infrastructure/Api/Controllers/DefaultApiController.php @@ -10,8 +10,7 @@ class DefaultApiController extends BaseController public function index() { return response()->json([ - 'title' => 'BEAM-Messenger', - 'version' => Version::getGitTag() + 'message' => 'Welcome to the official BEAM-Messenger API' ]); } } |