mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Allow for cluster creation
This commit is contained in:
parent
afc34a37b5
commit
a4eef3fdf7
3 changed files with 6 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
|
|
@ -201,6 +201,7 @@ public interface DataStoreProvider {
|
|||
SHELL,
|
||||
COMMAND,
|
||||
TUNNEL,
|
||||
SCRIPT
|
||||
SCRIPT,
|
||||
CLUSTER
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,6 +43,7 @@ refresh=Refresh
|
|||
moveTo=Move to ...
|
||||
remove=Remove
|
||||
addDatabase=Database ...
|
||||
addCluster=Cluster ...
|
||||
browseInternalStorage=Browse internal storage
|
||||
addTunnel=Tunnel ...
|
||||
addScript=Script ...
|
||||
|
|
Loading…
Reference in a new issue