XYZ-73: Removes EnableOnlyAdminIntegrations uses. (#8245)

Этот коммит содержится в:
Martin Kraft
2018-02-12 12:49:29 -05:00
коммит произвёл Jesús Espino
родитель 1edcabbc9b
Коммит 9325430859
2 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@@ -202,13 +202,10 @@ func TestDeleteCommand(t *testing.T) {
Client := th.SystemAdminClient
enableCommands := *th.App.Config().ServiceSettings.EnableCommands
onlyAdminIntegration := *th.App.Config().ServiceSettings.EnableOnlyAdminIntegrations
defer func() {
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.ServiceSettings.EnableCommands = enableCommands })
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.ServiceSettings.EnableOnlyAdminIntegrations = onlyAdminIntegration })
}()
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.ServiceSettings.EnableCommands = true })
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.ServiceSettings.EnableOnlyAdminIntegrations = false })
cmd := &model.Command{URL: "http://nowhere.com", Method: model.COMMAND_METHOD_POST, Trigger: "trigger"}
cmd = Client.Must(Client.CreateCommand(cmd)).Data.(*model.Command)