Permisions
MyTracker makes it possible to configure your system with very fine granularity.
- Edit style sheet
- Edit query
- Edit graph
- Edit report
- Edit notification
- Run query
- Run graph
- Run report
- View field
- Edit field
- Delete issue
- Add issue
- Modify issue
- Login restricted: this special permission(restriction) make it possible to have users which have acces to myTracker, but they should become email notifications
- Restrict selection of other users: take this permision if you don't want to allow some user to assign the the issue to other user(forward the work)
- Restrict selection of other user groups user : you can use this permission if you want to allow developers to forward work only to other developer
(the same user group), the user can forward the issue only to users from the same group(s)
- Add attachment
- Open attachment
- Delete attachment
- View attachment list
- Add note
- Edit note
- Delete note
- View note list
- Client append choice field items: you can specify if the user can add new items to the selected choice fields
Advanced:
For Modify issue permission is it possible to define an edit condition. It is a where clause in the select which test the
permission for editing. So if you want to enable the users to edit only own issue type in:ASSIGNEDTO=Current user
.
The check performing select in the client console will look like:
SELECT COUNT(*) FROM ISSUE WHERE ID="Issue ID to be edited" and (ASSIGNEDTO="ID of logged user")