Job name pattern: |
job.([A-Z]{3}).(.*) |
this is a regular expression and creates two regex groups:
{0} and {1} |
Group format: |
perm.{0}.Developer |
a format to construct a group with, (pattern references (to
the groups of the job name pattern) are optional, this allows to
define final group names to) |
Permissions: |
|
check the permissions you would like the group to have for the newly created
job |
Job name: |
job.ABC.ProjectAJob |
the name of the new job |
Group assigned: |
perm.ABC.Developer |
the final group assigned to the job - ABC from got extracted
from the job name and used in the group format at the place of {0}.
This group will have the selected permissions for the job. |