New Group UI updated.

This commit is contained in:
Asal Lotfi
2025-09-03 13:58:43 +03:30
parent 9cd71d33d4
commit cb63664701
4 changed files with 36 additions and 3 deletions
@@ -29,6 +29,7 @@ public class AddSubscriberController {
private final Set<Contact> selectedContacts = new HashSet<>();
private String channelName;
private String channelId;
private File channelImageFile;
private String description;
@@ -201,8 +202,9 @@ public class AddSubscriberController {
searchIcon.setGraphic(icon);
}
public void setChannelInfo(String name, String description, File image) {
public void setChannelInfo(String name, String id, String description, File image) {
this.channelName = name;
this.channelId = id;
this.channelImageFile = image;
this.description = description;
}