summaryrefslogtreecommitdiffstats
path: root/api4/system.go
diff options
context:
space:
mode:
authorRobin Naundorf <r.naundorf@fh-muenster.de>2017-02-17 11:57:19 +0100
committerGeorge Goldberg <george@gberg.me>2017-02-17 10:57:19 +0000
commit48b785aded359c98cf0008bd652a4437ea807cbd (patch)
tree1458d3344f25a37bd1c369a0a885a44f628db58f /api4/system.go
parenteadf37ad7ab0c25764f22923bae60ef70daea75f (diff)
downloadchat-48b785aded359c98cf0008bd652a4437ea807cbd.tar.gz
chat-48b785aded359c98cf0008bd652a4437ea807cbd.tar.bz2
chat-48b785aded359c98cf0008bd652a4437ea807cbd.zip
Add APIv4 /system/ping endpoint (#5443)
Diffstat (limited to 'api4/system.go')
-rw-r--r--api4/system.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/api4/system.go b/api4/system.go
new file mode 100644
index 000000000..94f4718a2
--- /dev/null
+++ b/api4/system.go
@@ -0,0 +1,21 @@
+// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api4
+
+import (
+ "net/http"
+
+ l4g "github.com/alecthomas/log4go"
+ "github.com/mattermost/platform/utils"
+)
+
+func InitSystem() {
+ l4g.Debug(utils.T("api.system.init.debug"))
+
+ BaseRoutes.System.Handle("/ping", ApiHandler(getSystemPing)).Methods("GET")
+}
+
+func getSystemPing(c *Context, w http.ResponseWriter, r *http.Request) {
+ ReturnStatusOK(w)
+}