aboutsummaryrefslogtreecommitdiffhomepage
path: root/infrastructure
diff options
context:
space:
mode:
authorMarvin Borner2018-08-24 13:17:32 +0200
committerMarvin Borner2018-08-24 13:17:32 +0200
commit0ee38e98532a9daf7ba08ab65b7f73d6505e0aea (patch)
tree6ff916179bb4ebe14369ea99b84109dc6e52ba13 /infrastructure
parent3045cb39be8b9c9cb3ca6ed643ccceac0042f0c0 (diff)
Began API for posts
Diffstat (limited to 'infrastructure')
-rw-r--r--infrastructure/Api/Controllers/DefaultApiController.php3
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'
]);
}
}