#23457 Added action "Publish/UnPublish" Project

This commit is contained in:
Francesco Mangiacrapa 2022-06-01 17:44:29 +02:00
parent 6e84b5ab68
commit 092d7a089e
3 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
#### Enhancements
- [#23392] Implemented the "Clone Project" facility
- [#23457] Implemented the "Publish/UnPublish Project" facility
## [v1.3.0] - 2021-12-03

View File

@ -15,6 +15,7 @@ public enum ACTION_ON_ITEM {
VIEW_REPORT("View the Report"),
EDIT_PROJECT("Edit the Project"),
CLONE_PROJECT("Clone the Project"),
PUBLISH_UNPUBLISH_PROJECT("Publish/UnPublish the Project"),
DELETE_PROJECT("Delete the Project");
String label;

View File

@ -92,7 +92,7 @@ public class TestGNACommon {
}
// @Test
//@Test
public void readGNDataEntryConfigsFromIS() throws Exception {
Thread thread = new Thread() {