github.com/ashishbhate/mattermost-server@v5.11.1+incompatible/app/data_retention.go (about) 1 // Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. 2 // See License.txt for license information. 3 4 package app 5 6 import ( 7 "net/http" 8 9 "github.com/mattermost/mattermost-server/model" 10 ) 11 12 func (a *App) GetDataRetentionPolicy() (*model.DataRetentionPolicy, *model.AppError) { 13 if a.DataRetention == nil { 14 return nil, model.NewAppError("App.GetDataRetentionPolicy", "ent.data_retention.generic.license.error", nil, "", http.StatusNotImplemented) 15 } 16 17 return a.DataRetention.GetPolicy() 18 }