Allow for cluster creation

This commit is contained in:
crschnick 2024-01-23 04:31:51 +00:00
parent afc34a37b5
commit a4eef3fdf7
3 changed files with 6 additions and 1 deletions

View file

@ -39,6 +39,9 @@ public class StoreCreationMenu {
menu.getItems().add(category("addTunnel", "mdi2v-vector-polyline-plus",
DataStoreProvider.CreationCategory.TUNNEL, null));
menu.getItems().add(category("addCluster", "mdi2d-domain-plus",
DataStoreProvider.CreationCategory.CLUSTER, null));
menu.getItems().add(category("addDatabase", "mdi2d-database-plus",
DataStoreProvider.CreationCategory.DATABASE, null));
}

View file

@ -201,6 +201,7 @@ public interface DataStoreProvider {
SHELL,
COMMAND,
TUNNEL,
SCRIPT
SCRIPT,
CLUSTER
}
}

View file

@ -43,6 +43,7 @@ refresh=Refresh
moveTo=Move to ...
remove=Remove
addDatabase=Database ...
addCluster=Cluster ...
browseInternalStorage=Browse internal storage
addTunnel=Tunnel ...
addScript=Script ...