channels ux cleanup and create-flow recovery

This commit is contained in:
DrygMira
2026-04-14 02:08:44 +03:00
parent 07e57b8563
commit 126b4ba3a1
22 changed files with 2322 additions and 664 deletions
@@ -5,6 +5,7 @@ import java.util.Arrays;
public class ChannelNameStateEntry {
private String slug;
private String displayName;
private String channelDescription;
private String ownerLogin;
private String ownerBlockchainName;
private int channelRootBlockNumber;
@@ -27,6 +28,14 @@ public class ChannelNameStateEntry {
this.displayName = displayName;
}
public String getChannelDescription() {
return channelDescription;
}
public void setChannelDescription(String channelDescription) {
this.channelDescription = channelDescription;
}
public String getOwnerLogin() {
return ownerLogin;
}