include the jsonData in the AppSettings DTO

This commit is contained in:
Anthony Woods 2016-01-21 02:23:24 +08:00
parent 9e121ef0c8
commit 1bca28ad12

View File

@ -31,6 +31,7 @@ func NewAppSettingsDto(def *plugins.AppPlugin, data *models.AppSettings) *AppSet
dto.Enabled = data.Enabled
dto.Pinned = data.Pinned
dto.Info = &def.Info
dto.JsonData = data.JsonData
}
return dto