Moved to App.Utils.replaceTags() and fixed quoting issues.
This commit is contained in:
parent
f6deecacd4
commit
aa999012fd
1 changed files with 8 additions and 7 deletions
|
@ -22,17 +22,18 @@ Create Text Modules to **spend less time writing responses**. TextModules can in
|
|||
|
||||
Examples of snippets are:
|
||||
|
||||
* Hallo Frau #{@ticket.customer.lastname},
|
||||
* Hallo Herr #{@ticket.customer.lastname},
|
||||
* Hallo #{@ticket.customer.firstname},
|
||||
* Hallo Frau #{ticket.customer.lastname},
|
||||
* Hallo Herr #{ticket.customer.lastname},
|
||||
* Hallo #{ticket.customer.firstname},
|
||||
* My Name is #{user.firstname},
|
||||
|
||||
Of course you can also use multi line snippets.
|
||||
|
||||
Available objects are:
|
||||
* @ticket (e. g. @ticket.state, @ticket.group)
|
||||
* @ticket.customer (e. g. @ticket.customer.firstname, @ticket.customer.lastname)
|
||||
* @ticket.owner (e. g. @ticket.owner.firstname, @ticket.owner.lastname)
|
||||
* @ticket.organization (e. g. @ticket.organization.name)
|
||||
* ticket (e. g. ticket.state, ticket.group)
|
||||
* ticket.customer (e. g. ticket.customer.firstname, ticket.customer.lastname)
|
||||
* ticket.owner (e. g. ticket.owner.firstname, ticket.owner.lastname)
|
||||
* ticket.organization (e. g. ticket.organization.name)
|
||||
|
||||
'''
|
||||
# coffeelint: enable=no_interpolation_in_single_quotes
|
||||
|
|
Loading…
Reference in a new issue