summaryrefslogtreecommitdiffstats
path: root/api4/data_retention.go
blob: 8c42473e6fd36c7d43869a1a43a2c2aa487130dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package api4

import (
	"net/http"
)

func (api *API) InitDataRetention() {
	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()))
	}
}