Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
best-practical
rt-extension-sla
Commits
6c7862c1
Commit
6c7862c1
authored
Apr 20, 2012
by
Ruslan Zakirov
Browse files
update docs about Starts date
parent
fce5def2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
7 deletions
+23
-7
lib/RT/Extension/SLA.pm
lib/RT/Extension/SLA.pm
+23
-7
No files found.
lib/RT/Extension/SLA.pm
View file @
6c7862c1
...
...
@@ -67,14 +67,14 @@ In this example I<Incident> is the name of the queue, and I<2h> is the name of
the SLA which will be applied to this queue by default.
Each service level can be described using several options:
L<Start
Immediately|/"StartImmediately (boolean, fals
e)">,
L<Start
s|/"Starts (interval, first business minut
e)">,
L<Resolve|/"Resolve and Response (interval, no defaults)">,
L<Response|/"Resolve and Response (interval, no defaults)">,
L<KeepInLoop|/"Keep in loop (interval, no defaults)">,
L<OutOfHours|/"OutOfHours (struct, no default)">
and L<ServiceBusinessHours|/"Configuring business hours">.
=head2 Start
Immediately (boolean, fals
e)
=head2 Start
s (interval, first business minut
e)
By default when a ticket is created Starts date is set to
first business minute after time of creation. In other
...
...
@@ -84,8 +84,21 @@ be beginning of the next business day.
However, if you provide 24/7 support then you most
probably would be interested in Starts to be always equal
to Created time. In this case you can set option
StartImmediately to a true value.
to Created time.
Starts option can be used to adjust behaviour. Format
of the option is the same as format for deadlines which
described later in details. RealMinutes, BusinessMinutes
options and OutOfHours modifiers can be used here like
for any other deadline. For example:
'standard' => {
# give people 15 minutes
Starts => { BusinessMinutes => 15 },
},
You can still use old option StartImmediately to set
Starts date equal to Created date.
Example:
...
...
@@ -93,9 +106,12 @@ Example:
StartImmediately => 1,
Response => { RealMinutes => 30 },
},
'standard' => {
StartImmediately => 0, # can be ommited as it's default
Response => { BusinessMinutes => 2*60 },
But it's the same as:
'24/7' => {
Starts => { RealMinutes => 0 },
Response => { RealMinutes => 30 },
},
=head2 Resolve and Response (interval, no defaults)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment