summaryrefslogtreecommitdiffstats
path: root/api4/data_retention.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/data_retention.go')
-rw-r--r--api4/data_retention.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/api4/data_retention.go b/api4/data_retention.go
new file mode 100644
index 000000000..da0d5812e
--- /dev/null
+++ b/api4/data_retention.go
@@ -0,0 +1,30 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api4
+
+import (
+ "net/http"
+
+ l4g "github.com/alecthomas/log4go"
+
+ "github.com/mattermost/mattermost-server/utils"
+)
+
+func (api *API) InitDataRetention() {
+ l4g.Debug(utils.T("api.data_retention.init.debug"))
+
+ api.BaseRoutes.DataRetention.Handle("/policy", api.ApiSessionRequired(getPolicy)).Methods("GET")
+}
+
+func getPolicy(c *Context, w http.ResponseWriter, r *http.Request) {
+
+ // No permission check required.
+
+ if policy, err := c.App.GetDataRetentionPolicy(); err != nil {
+ c.Err = err
+ return
+ } else {
+ w.Write([]byte(policy.ToJson()))
+ }
+}