admUpdateProject
Description
Returns true if the project is updated.
Parameters
Return Type
Boolean
Returns true if the project is updated.
Example
use "adm";
persistent int countCMP=0;
string keyprj = "CX"+ countCMP++;
string nameprj= "One very complex project" + countCMP;
boolean retUpd = updateProject(keyprj, nameprj, "another fun description", "https://goggle.com", null, currentUser(), true,
permissionScheme("Default Permission Scheme").id,
issueSecurityScheme("Simplified Issue Security Scheme").id,
notificationScheme("Default Notification Scheme").id);
See also
Peacock