Revert "MM-27147 - /cloud api endpoints (#15428)" (#15615)

This reverts commit 88aed7ec9e.
Этот коммит содержится в:
Agniva De Sarker
2020-09-28 12:36:55 +05:30
коммит произвёл GitHub
родитель 88aed7ec9e
Коммит 85b434c50d
15 изменённых файлов: 8 добавлений и 296 удалений

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

@@ -630,9 +630,6 @@ func (a *App) Notification() einterfaces.NotificationInterface {
func (a *App) Saml() einterfaces.SamlInterface {
return a.srv.Saml
}
func (a *App) Cloud() einterfaces.CloudInterface {
return a.srv.Cloud
}
func (a *App) HTTPService() httpservice.HTTPService {
return a.srv.HTTPService
}

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

@@ -397,7 +397,6 @@ type AppIface interface {
ClearTeamMembersCache(teamID string)
ClientConfig() map[string]string
ClientConfigHash() string
Cloud() einterfaces.CloudInterface
Cluster() einterfaces.ClusterInterface
CompareAndDeletePluginKey(pluginId string, key string, oldValue []byte) (bool, *model.AppError)
CompareAndSetPluginKey(pluginId string, key string, oldValue, newValue []byte) (bool, *model.AppError)

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

@@ -120,12 +120,6 @@ func RegisterMessageExportInterface(f func(*Server) einterfaces.MessageExportInt
messageExportInterface = f
}
var cloudInterface func(*App) einterfaces.CloudInterface
func RegisterCloudInterface(f func(*App) einterfaces.CloudInterface) {
cloudInterface = f
}
var metricsInterface func(*Server) einterfaces.MetricsInterface
func RegisterMetricsInterface(f func(*Server) einterfaces.MetricsInterface) {
@@ -201,7 +195,4 @@ func (a *App) initEnterprise() {
}
})
}
if cloudInterface != nil {
a.srv.Cloud = cloudInterface(a)
}
}

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

@@ -1322,23 +1322,6 @@ func (a *OpenTracingAppLayer) ClientConfigWithComputed() map[string]string {
return resultVar0
}
func (a *OpenTracingAppLayer) Cloud() einterfaces.CloudInterface {
origCtx := a.ctx
span, newCtx := tracing.StartSpanWithParentByContext(a.ctx, "app.Cloud")
a.ctx = newCtx
a.app.Srv().Store.SetContext(newCtx)
defer func() {
a.app.Srv().Store.SetContext(origCtx)
a.ctx = origCtx
}()
defer span.Finish()
resultVar0 := a.app.Cloud()
return resultVar0
}
func (a *OpenTracingAppLayer) CompareAndDeletePluginKey(pluginId string, key string, oldValue []byte) (bool, *model.AppError) {
origCtx := a.ctx
span, newCtx := tracing.StartSpanWithParentByContext(a.ctx, "app.CompareAndDeletePluginKey")

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

@@ -163,7 +163,6 @@ type Server struct {
DataRetention einterfaces.DataRetentionInterface
Ldap einterfaces.LdapInterface
MessageExport einterfaces.MessageExportInterface
Cloud einterfaces.CloudInterface
Metrics einterfaces.MetricsInterface
Notification einterfaces.NotificationInterface
Saml einterfaces.SamlInterface