PLT-7705: API to get data retention policy. (#7539)

* PLT-7705: API to get data retention policy.

* Fix review comments.
Этот коммит содержится в:
George Goldberg
2017-10-02 12:43:21 +01:00
коммит произвёл GitHub
родитель 9bc7af0c57
Коммит 76bd1bb212
13 изменённых файлов: 157 добавлений и 12 удалений

18
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()
}