no message

This commit is contained in:
2024-05-22 00:30:36 +03:00
parent d6bad4d45e
commit 8de3474fa4
3 changed files with 6 additions and 8 deletions

View File

@@ -3,6 +3,8 @@ import Common.Current;
import Common.Database.DBObject;
import Common.Database.Database;
import Common.Global;
import Common.UI.UI;
import Common.Utils.Utils;
import GlobalData.Machine.Machine;
import GlobalData.Machine.MachineType;
import GlobalData.User.User;
@@ -33,8 +35,8 @@ public class AddUser extends AddObjectPass<User> {
return false;
}
@Override
protected void performDone() throws Exception {
super.performDone();
protected void showDone() throws Exception {
super.showDone();
passes.get(PassCode_2021.InitialiseUser).Do();
}
}

View File

@@ -25,7 +25,7 @@ public class RemoteInitialiseUser extends ConnectionPass<RemoteFile> {
}
@Override
protected void ServerAction() throws Exception {
String workspace_name = Utils.getDateName("visual_sapfor_workspace");
String workspace_name = Utils.getDateName(".visual_sapfor_workspace");
ShowMessage1("Создание рабочего пространства...");
target = new RemoteFile(user.connection.sftpChannel.getHome(), workspace_name);
user.connection.sftpChannel.mkdir(target.full_name);