From 76bd1bb212177824379c485c553e54530a854009 Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Mon, 2 Oct 2017 12:43:21 +0100 Subject: PLT-7705: API to get data retention policy. (#7539) * PLT-7705: API to get data retention policy. * Fix review comments. --- app/data_retention.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/data_retention.go (limited to 'app/data_retention.go') diff --git a/app/data_retention.go b/app/data_retention.go new file mode 100644 index 000000000..b931ca8b1 --- /dev/null +++ b/app/data_retention.go @@ -0,0 +1,18 @@ +// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +package app + +import ( + "net/http" + + "github.com/mattermost/mattermost-server/model" +) + +func (a *App) GetDataRetentionPolicy() (*model.DataRetentionPolicy, *model.AppError) { + if a.DataRetention == nil { + return nil, model.NewAppError("App.GetDataRetentionPolicy", "ent.data_retention.generic.license.error", nil, "", http.StatusNotImplemented) + } + + return a.DataRetention.GetPolicy() +} -- cgit v1.2.3-1-g7c22