diff --git a/web/ASC.Web.Api/Api/MigrationController.cs b/web/ASC.Web.Api/Api/MigrationController.cs index d7d25c8d2f9..9209014bd74 100644 --- a/web/ASC.Web.Api/Api/MigrationController.cs +++ b/web/ASC.Web.Api/Api/MigrationController.cs @@ -140,7 +140,7 @@ public async Task FinishAsync(FinishDto inDto) private async Task DemandPermission() { - if (!coreBaseSettings.Standalone || !await userManager.IsDocSpaceAdminAsync(authContext.CurrentAccount.ID)) + if (!await userManager.IsDocSpaceAdminAsync(authContext.CurrentAccount.ID)) { throw new SecurityException(Resource.ErrorAccessDenied); }