Added operation 'VIEW_RELATIONSHIPS'

This commit is contained in:
Francesco Mangiacrapa 2022-09-21 17:16:15 +02:00
parent 2f263dae44
commit 8d64e2972c
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,8 @@ public enum OPERATION_ON_ITEM {
CLONE_PROJECT("Clone the Project"),
PUBLISH_UNPUBLISH_PROJECT("Publish/UnPublish the Project"),
DELETE_PROJECT("Delete the Project"),
CREATE_RELATION("Create Relation between two Projects");
CREATE_RELATION("Create Relation between two Projects"),
VIEW_RELATIONSHIPS("View the relationship/s created for the Project");
String label;