ACL not working for Project Worksapce
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 12:52 AM
i have a requirement that in customer_project table if the project manager and logged in user is not same then he will not be able to assignee that project to any user. and for that i have created 2 acl one is list_edit and another is write ACL, it's working fine for form view and for list view but not working in project workspace.
i am using this script:
var answer = true;
if (gs.hasRole('it_project_manager') && gs.getUserID() != current.project_manager) {
answer = false;
} else {
answer = true;
}
answer;
0 REPLIES 0