Question
REST API to Enable / Disable the project
Hello!
We are trying to find a REST API which allows us to Enable/Disable a project (i.e. Lock all the trackers, prevent any changes in members, roles, etc)
In Java based workflow actions, we are using:
var project = projectDao.findById(admin, project.getId());project.setDisabled(true);projectDao.update(project);

