Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Brandt <jbrandt@bestpractical.com>2022-09-26 23:02:49 +0300
committerJim Brandt <jbrandt@bestpractical.com>2022-09-26 23:02:49 +0300
commit14bc2d810dba1e22ab710f85529c51e3f066e7f0 (patch)
treeca4cce55b2672f5e9a130e74d23c8b5cd1d5e234
parent434a45c7a14873280474e75627b6e60755e912c5 (diff)
parentdbd60151d708467ac7d35ad163738ccf05f65667 (diff)
Merge branch '4.4/fix-custom-role-initialdata-docs' into 4.4-trunk
-rw-r--r--docs/initialdata.pod8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/initialdata.pod b/docs/initialdata.pod
index f862fde79c..8b87055d4d 100644
--- a/docs/initialdata.pod
+++ b/docs/initialdata.pod
@@ -105,11 +105,13 @@ new group.
push @CustomRoles, {
Name => 'Support Rep',
Description => 'Support representative assigned for this ticket',
+ ApplyTo => 'General',
};
-Creates a new L<RT::CustomRole> for each hashref. The above example will
-create the role globally. To apply the role to only a specific queue,
-use the C<ApplyTo> entry as described in L</@CustomFields> below.
+Creates a new L<RT::CustomRole> for each hashref. Custom roles B<must>
+be applied per queue; they cannot be applied globally. See the
+C<ApplyTo> entry as described in L</@CustomFields> below for more
+information.
=head2 C<@Queues>