MM-10591: Well known error for all scheme endpoints pre-migration. (#8812)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
b9b76b275a
Коммит
c2ab85e0a3
@@ -132,7 +132,7 @@ func TestCreateScheme(t *testing.T) {
|
|||||||
Scope: model.SCHEME_SCOPE_TEAM,
|
Scope: model.SCHEME_SCOPE_TEAM,
|
||||||
}
|
}
|
||||||
_, r7 := th.SystemAdminClient.CreateScheme(scheme7)
|
_, r7 := th.SystemAdminClient.CreateScheme(scheme7)
|
||||||
CheckInternalErrorStatus(t, r7)
|
CheckNotImplementedStatus(t, r7)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetScheme(t *testing.T) {
|
func TestGetScheme(t *testing.T) {
|
||||||
@@ -148,7 +148,6 @@ func TestGetScheme(t *testing.T) {
|
|||||||
Scope: model.SCHEME_SCOPE_TEAM,
|
Scope: model.SCHEME_SCOPE_TEAM,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mark the migration as done while we create the scheme.
|
|
||||||
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
||||||
assert.Nil(t, res.Err)
|
assert.Nil(t, res.Err)
|
||||||
@@ -156,9 +155,6 @@ func TestGetScheme(t *testing.T) {
|
|||||||
s1, r1 := th.SystemAdminClient.CreateScheme(scheme1)
|
s1, r1 := th.SystemAdminClient.CreateScheme(scheme1)
|
||||||
CheckNoError(t, r1)
|
CheckNoError(t, r1)
|
||||||
|
|
||||||
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
|
||||||
assert.Nil(t, res.Err)
|
|
||||||
|
|
||||||
assert.Equal(t, s1.Name, scheme1.Name)
|
assert.Equal(t, s1.Name, scheme1.Name)
|
||||||
assert.Equal(t, s1.Description, scheme1.Description)
|
assert.Equal(t, s1.Description, scheme1.Description)
|
||||||
assert.NotZero(t, s1.CreateAt)
|
assert.NotZero(t, s1.CreateAt)
|
||||||
@@ -192,6 +188,13 @@ func TestGetScheme(t *testing.T) {
|
|||||||
|
|
||||||
_, r7 := th.Client.GetScheme(s1.Id)
|
_, r7 := th.Client.GetScheme(s1.Id)
|
||||||
CheckForbiddenStatus(t, r7)
|
CheckForbiddenStatus(t, r7)
|
||||||
|
|
||||||
|
// Mark the migration as not done.
|
||||||
|
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
|
assert.Nil(t, res.Err)
|
||||||
|
|
||||||
|
_, r8 := th.SystemAdminClient.GetScheme(s1.Id)
|
||||||
|
CheckNotImplementedStatus(t, r8)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetSchemes(t *testing.T) {
|
func TestGetSchemes(t *testing.T) {
|
||||||
@@ -212,7 +215,6 @@ func TestGetSchemes(t *testing.T) {
|
|||||||
Scope: model.SCHEME_SCOPE_CHANNEL,
|
Scope: model.SCHEME_SCOPE_CHANNEL,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mark the migration as done while we create the scheme.
|
|
||||||
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
||||||
assert.Nil(t, res.Err)
|
assert.Nil(t, res.Err)
|
||||||
@@ -222,9 +224,6 @@ func TestGetSchemes(t *testing.T) {
|
|||||||
_, r2 := th.SystemAdminClient.CreateScheme(scheme2)
|
_, r2 := th.SystemAdminClient.CreateScheme(scheme2)
|
||||||
CheckNoError(t, r2)
|
CheckNoError(t, r2)
|
||||||
|
|
||||||
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
|
||||||
assert.Nil(t, res.Err)
|
|
||||||
|
|
||||||
l3, r3 := th.SystemAdminClient.GetSchemes("", 0, 100)
|
l3, r3 := th.SystemAdminClient.GetSchemes("", 0, 100)
|
||||||
CheckNoError(t, r3)
|
CheckNoError(t, r3)
|
||||||
|
|
||||||
@@ -254,6 +253,13 @@ func TestGetSchemes(t *testing.T) {
|
|||||||
th.Client.Login(th.BasicUser.Username, th.BasicUser.Password)
|
th.Client.Login(th.BasicUser.Username, th.BasicUser.Password)
|
||||||
_, r8 := th.Client.GetSchemes("", 0, 100)
|
_, r8 := th.Client.GetSchemes("", 0, 100)
|
||||||
CheckForbiddenStatus(t, r8)
|
CheckForbiddenStatus(t, r8)
|
||||||
|
|
||||||
|
// Mark the migration as not done.
|
||||||
|
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
|
assert.Nil(t, res.Err)
|
||||||
|
|
||||||
|
_, r9 := th.SystemAdminClient.GetSchemes("", 0, 100)
|
||||||
|
CheckNotImplementedStatus(t, r9)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetTeamsForScheme(t *testing.T) {
|
func TestGetTeamsForScheme(t *testing.T) {
|
||||||
@@ -262,7 +268,6 @@ func TestGetTeamsForScheme(t *testing.T) {
|
|||||||
|
|
||||||
th.App.SetLicense(model.NewTestLicense(""))
|
th.App.SetLicense(model.NewTestLicense(""))
|
||||||
|
|
||||||
// Mark the migration as done while we create the scheme.
|
|
||||||
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
||||||
assert.Nil(t, res.Err)
|
assert.Nil(t, res.Err)
|
||||||
@@ -275,9 +280,6 @@ func TestGetTeamsForScheme(t *testing.T) {
|
|||||||
scheme1, r1 := th.SystemAdminClient.CreateScheme(scheme1)
|
scheme1, r1 := th.SystemAdminClient.CreateScheme(scheme1)
|
||||||
CheckNoError(t, r1)
|
CheckNoError(t, r1)
|
||||||
|
|
||||||
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
|
||||||
assert.Nil(t, res.Err)
|
|
||||||
|
|
||||||
team1 := &model.Team{
|
team1 := &model.Team{
|
||||||
Name: GenerateTestUsername(),
|
Name: GenerateTestUsername(),
|
||||||
DisplayName: "A Test Team",
|
DisplayName: "A Test Team",
|
||||||
@@ -338,10 +340,6 @@ func TestGetTeamsForScheme(t *testing.T) {
|
|||||||
_, ri4 := th.Client.GetTeamsForScheme(model.NewId(), 0, 100)
|
_, ri4 := th.Client.GetTeamsForScheme(model.NewId(), 0, 100)
|
||||||
CheckForbiddenStatus(t, ri4)
|
CheckForbiddenStatus(t, ri4)
|
||||||
|
|
||||||
// Mark the migration as done again while we create a scheme.
|
|
||||||
res = <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
|
||||||
assert.Nil(t, res.Err)
|
|
||||||
|
|
||||||
scheme2 := &model.Scheme{
|
scheme2 := &model.Scheme{
|
||||||
Name: model.NewId(),
|
Name: model.NewId(),
|
||||||
Description: model.NewId(),
|
Description: model.NewId(),
|
||||||
@@ -350,11 +348,15 @@ func TestGetTeamsForScheme(t *testing.T) {
|
|||||||
scheme2, rs2 := th.SystemAdminClient.CreateScheme(scheme2)
|
scheme2, rs2 := th.SystemAdminClient.CreateScheme(scheme2)
|
||||||
CheckNoError(t, rs2)
|
CheckNoError(t, rs2)
|
||||||
|
|
||||||
|
_, ri5 := th.SystemAdminClient.GetTeamsForScheme(scheme2.Id, 0, 100)
|
||||||
|
CheckBadRequestStatus(t, ri5)
|
||||||
|
|
||||||
|
// Mark the migration as not done.
|
||||||
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
assert.Nil(t, res.Err)
|
assert.Nil(t, res.Err)
|
||||||
|
|
||||||
_, ri5 := th.SystemAdminClient.GetTeamsForScheme(scheme2.Id, 0, 100)
|
_, ri6 := th.SystemAdminClient.GetTeamsForScheme(scheme1.Id, 0, 100)
|
||||||
CheckBadRequestStatus(t, ri5)
|
CheckNotImplementedStatus(t, ri6)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetChannelsForScheme(t *testing.T) {
|
func TestGetChannelsForScheme(t *testing.T) {
|
||||||
@@ -363,7 +365,6 @@ func TestGetChannelsForScheme(t *testing.T) {
|
|||||||
|
|
||||||
th.App.SetLicense(model.NewTestLicense(""))
|
th.App.SetLicense(model.NewTestLicense(""))
|
||||||
|
|
||||||
// Mark the migration as done while we create the scheme.
|
|
||||||
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
<-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
res := <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
||||||
assert.Nil(t, res.Err)
|
assert.Nil(t, res.Err)
|
||||||
@@ -376,9 +377,6 @@ func TestGetChannelsForScheme(t *testing.T) {
|
|||||||
scheme1, r1 := th.SystemAdminClient.CreateScheme(scheme1)
|
scheme1, r1 := th.SystemAdminClient.CreateScheme(scheme1)
|
||||||
CheckNoError(t, r1)
|
CheckNoError(t, r1)
|
||||||
|
|
||||||
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
|
||||||
assert.Nil(t, res.Err)
|
|
||||||
|
|
||||||
channel1 := &model.Channel{
|
channel1 := &model.Channel{
|
||||||
TeamId: model.NewId(),
|
TeamId: model.NewId(),
|
||||||
DisplayName: "A Name",
|
DisplayName: "A Name",
|
||||||
@@ -441,10 +439,6 @@ func TestGetChannelsForScheme(t *testing.T) {
|
|||||||
_, ri4 := th.Client.GetChannelsForScheme(model.NewId(), 0, 100)
|
_, ri4 := th.Client.GetChannelsForScheme(model.NewId(), 0, 100)
|
||||||
CheckForbiddenStatus(t, ri4)
|
CheckForbiddenStatus(t, ri4)
|
||||||
|
|
||||||
// Mark the migration as done again while we create a scheme.
|
|
||||||
res = <-th.App.Srv.Store.System().Save(&model.System{Name: model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2, Value: "true"})
|
|
||||||
assert.Nil(t, res.Err)
|
|
||||||
|
|
||||||
scheme2 := &model.Scheme{
|
scheme2 := &model.Scheme{
|
||||||
Name: model.NewId(),
|
Name: model.NewId(),
|
||||||
Description: model.NewId(),
|
Description: model.NewId(),
|
||||||
@@ -453,11 +447,15 @@ func TestGetChannelsForScheme(t *testing.T) {
|
|||||||
scheme2, rs2 := th.SystemAdminClient.CreateScheme(scheme2)
|
scheme2, rs2 := th.SystemAdminClient.CreateScheme(scheme2)
|
||||||
CheckNoError(t, rs2)
|
CheckNoError(t, rs2)
|
||||||
|
|
||||||
|
_, ri5 := th.SystemAdminClient.GetChannelsForScheme(scheme2.Id, 0, 100)
|
||||||
|
CheckBadRequestStatus(t, ri5)
|
||||||
|
|
||||||
|
// Mark the migration as not done.
|
||||||
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
res = <-th.App.Srv.Store.System().PermanentDeleteByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2)
|
||||||
assert.Nil(t, res.Err)
|
assert.Nil(t, res.Err)
|
||||||
|
|
||||||
_, ri5 := th.SystemAdminClient.GetChannelsForScheme(scheme2.Id, 0, 100)
|
_, ri6 := th.SystemAdminClient.GetChannelsForScheme(scheme1.Id, 0, 100)
|
||||||
CheckBadRequestStatus(t, ri5)
|
CheckNotImplementedStatus(t, ri6)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestPatchScheme(t *testing.T) {
|
func TestPatchScheme(t *testing.T) {
|
||||||
@@ -560,7 +558,7 @@ func TestPatchScheme(t *testing.T) {
|
|||||||
th.App.SetLicense(model.NewTestLicense(""))
|
th.App.SetLicense(model.NewTestLicense(""))
|
||||||
|
|
||||||
_, r12 := th.SystemAdminClient.PatchScheme(s6.Id, schemePatch)
|
_, r12 := th.SystemAdminClient.PatchScheme(s6.Id, schemePatch)
|
||||||
CheckInternalErrorStatus(t, r12)
|
CheckNotImplementedStatus(t, r12)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDeleteScheme(t *testing.T) {
|
func TestDeleteScheme(t *testing.T) {
|
||||||
@@ -776,6 +774,6 @@ func TestDeleteScheme(t *testing.T) {
|
|||||||
th.App.SetLicense(model.NewTestLicense(""))
|
th.App.SetLicense(model.NewTestLicense(""))
|
||||||
|
|
||||||
_, r6 := th.SystemAdminClient.DeleteScheme(s1.Id)
|
_, r6 := th.SystemAdminClient.DeleteScheme(s1.Id)
|
||||||
CheckInternalErrorStatus(t, r6)
|
CheckNotImplementedStatus(t, r6)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,9 +5,14 @@ package app
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/mattermost/mattermost-server/model"
|
"github.com/mattermost/mattermost-server/model"
|
||||||
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (a *App) GetScheme(id string) (*model.Scheme, *model.AppError) {
|
func (a *App) GetScheme(id string) (*model.Scheme, *model.AppError) {
|
||||||
|
if err := a.IsPhase2MigrationCompleted(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
if result := <-a.Srv.Store.Scheme().Get(id); result.Err != nil {
|
if result := <-a.Srv.Store.Scheme().Get(id); result.Err != nil {
|
||||||
return nil, result.Err
|
return nil, result.Err
|
||||||
} else {
|
} else {
|
||||||
@@ -16,10 +21,18 @@ func (a *App) GetScheme(id string) (*model.Scheme, *model.AppError) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) GetSchemesPage(scope string, page int, perPage int) ([]*model.Scheme, *model.AppError) {
|
func (a *App) GetSchemesPage(scope string, page int, perPage int) ([]*model.Scheme, *model.AppError) {
|
||||||
|
if err := a.IsPhase2MigrationCompleted(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
return a.GetSchemes(scope, page*perPage, perPage)
|
return a.GetSchemes(scope, page*perPage, perPage)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) GetSchemes(scope string, offset int, limit int) ([]*model.Scheme, *model.AppError) {
|
func (a *App) GetSchemes(scope string, offset int, limit int) ([]*model.Scheme, *model.AppError) {
|
||||||
|
if err := a.IsPhase2MigrationCompleted(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
if result := <-a.Srv.Store.Scheme().GetAllPage(scope, offset, limit); result.Err != nil {
|
if result := <-a.Srv.Store.Scheme().GetAllPage(scope, offset, limit); result.Err != nil {
|
||||||
return nil, result.Err
|
return nil, result.Err
|
||||||
} else {
|
} else {
|
||||||
@@ -87,10 +100,18 @@ func (a *App) DeleteScheme(schemeId string) (*model.Scheme, *model.AppError) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) GetTeamsForSchemePage(scheme *model.Scheme, page int, perPage int) ([]*model.Team, *model.AppError) {
|
func (a *App) GetTeamsForSchemePage(scheme *model.Scheme, page int, perPage int) ([]*model.Team, *model.AppError) {
|
||||||
|
if err := a.IsPhase2MigrationCompleted(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
return a.GetTeamsForScheme(scheme, page*perPage, perPage)
|
return a.GetTeamsForScheme(scheme, page*perPage, perPage)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) GetTeamsForScheme(scheme *model.Scheme, offset int, limit int) ([]*model.Team, *model.AppError) {
|
func (a *App) GetTeamsForScheme(scheme *model.Scheme, offset int, limit int) ([]*model.Team, *model.AppError) {
|
||||||
|
if err := a.IsPhase2MigrationCompleted(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
if result := <-a.Srv.Store.Team().GetTeamsByScheme(scheme.Id, offset, limit); result.Err != nil {
|
if result := <-a.Srv.Store.Team().GetTeamsByScheme(scheme.Id, offset, limit); result.Err != nil {
|
||||||
return nil, result.Err
|
return nil, result.Err
|
||||||
} else {
|
} else {
|
||||||
@@ -99,10 +120,18 @@ func (a *App) GetTeamsForScheme(scheme *model.Scheme, offset int, limit int) ([]
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) GetChannelsForSchemePage(scheme *model.Scheme, page int, perPage int) (model.ChannelList, *model.AppError) {
|
func (a *App) GetChannelsForSchemePage(scheme *model.Scheme, page int, perPage int) (model.ChannelList, *model.AppError) {
|
||||||
|
if err := a.IsPhase2MigrationCompleted(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
return a.GetChannelsForScheme(scheme, page*perPage, perPage)
|
return a.GetChannelsForScheme(scheme, page*perPage, perPage)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) GetChannelsForScheme(scheme *model.Scheme, offset int, limit int) (model.ChannelList, *model.AppError) {
|
func (a *App) GetChannelsForScheme(scheme *model.Scheme, offset int, limit int) (model.ChannelList, *model.AppError) {
|
||||||
|
if err := a.IsPhase2MigrationCompleted(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
if result := <-a.Srv.Store.Channel().GetChannelsByScheme(scheme.Id, offset, limit); result.Err != nil {
|
if result := <-a.Srv.Store.Channel().GetChannelsByScheme(scheme.Id, offset, limit); result.Err != nil {
|
||||||
return nil, result.Err
|
return nil, result.Err
|
||||||
} else {
|
} else {
|
||||||
@@ -112,7 +141,7 @@ func (a *App) GetChannelsForScheme(scheme *model.Scheme, offset int, limit int)
|
|||||||
|
|
||||||
func (a *App) IsPhase2MigrationCompleted() *model.AppError {
|
func (a *App) IsPhase2MigrationCompleted() *model.AppError {
|
||||||
if result := <-a.Srv.Store.System().GetByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2); result.Err != nil {
|
if result := <-a.Srv.Store.System().GetByName(model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2); result.Err != nil {
|
||||||
return result.Err
|
return model.NewAppError("App.IsPhase2MigrationCompleted", "app.schemes.is_phase_2_migration_completed.not_completed.app_error", nil, result.Err.Error(), http.StatusNotImplemented)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
@@ -243,6 +243,10 @@
|
|||||||
"id": "api.channel.can_manage_channel.private_restricted_system_admin.app_error",
|
"id": "api.channel.can_manage_channel.private_restricted_system_admin.app_error",
|
||||||
"translation": "Private Channel management and creation is restricted to System Administrators."
|
"translation": "Private Channel management and creation is restricted to System Administrators."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "app.schemes.is_phase_2_migration_completed.not_completed.app_error",
|
||||||
|
"translation": "This API endpoint is not accessible as required migrations have not yet completed."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "api.channel.can_manage_channel.private_restricted_team_admin.app_error",
|
"id": "api.channel.can_manage_channel.private_restricted_team_admin.app_error",
|
||||||
"translation": "Private Channel management and creation is restricted to Team and System Administrators."
|
"translation": "Private Channel management and creation is restricted to Team and System Administrators."
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user