2020-04-20 11:41:13 +02:00
|
|
|
{{#if showUndo}}
|
|
|
|
{{d-button
|
2022-04-04 12:14:00 +02:00
|
|
|
action="undoChanges"
|
2020-04-20 11:41:13 +02:00
|
|
|
icon=undoIcon
|
|
|
|
label=undoKey
|
|
|
|
class="undo-changes"}}
|
|
|
|
{{/if}}
|
|
|
|
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.type"}}</label>
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-value">
|
2020-02-02 11:42:05 +01:00
|
|
|
{{combo-box
|
|
|
|
value=action.type
|
2021-04-14 05:37:19 +02:00
|
|
|
content=actionTypes
|
2020-04-20 11:41:13 +02:00
|
|
|
onChange=(action "changeType")
|
2020-03-22 07:47:56 +01:00
|
|
|
options=(hash
|
2020-04-20 13:40:32 +02:00
|
|
|
none="admin.wizard.select_type"
|
2020-03-22 07:47:56 +01:00
|
|
|
)}}
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-04-08 04:52:07 +02:00
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
2020-04-08 09:59:54 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.run_after.label"}}</label>
|
2020-04-08 04:52:07 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-08 04:52:07 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{combo-box
|
|
|
|
value=action.run_after
|
|
|
|
content=runAfterContent
|
|
|
|
onChange=(action (mut action.run_after))}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-04-20 13:40:32 +02:00
|
|
|
{{wizard-message
|
|
|
|
key=messageKey
|
|
|
|
url=messageUrl
|
2021-04-12 16:19:53 +02:00
|
|
|
component="action"}}
|
2020-04-20 13:40:32 +02:00
|
|
|
|
2019-08-27 08:05:24 +02:00
|
|
|
{{#if basicTopicFields}}
|
2020-03-31 08:29:59 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.title"}}</label>
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-value">
|
2020-04-01 07:03:26 +02:00
|
|
|
{{wizard-mapper
|
2020-03-31 08:29:59 +02:00
|
|
|
inputs=action.title
|
2021-04-12 16:19:53 +02:00
|
|
|
property="title"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-03-22 07:47:56 +01:00
|
|
|
options=(hash
|
2020-04-05 03:37:09 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
context="action"
|
2020-03-22 07:47:56 +01:00
|
|
|
)}}
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.post"}}</label>
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-value">
|
2020-02-02 11:42:05 +01:00
|
|
|
{{combo-box
|
|
|
|
value=action.post
|
2021-04-14 05:37:19 +02:00
|
|
|
content=wizardFields
|
2021-04-12 16:19:53 +02:00
|
|
|
nameProperty="label"
|
2020-03-29 09:49:33 +02:00
|
|
|
onChange=(action (mut action.post))
|
2020-03-22 07:47:56 +01:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
none="admin.wizard.selector.placeholder.wizard_field"
|
2020-04-15 02:46:44 +02:00
|
|
|
isDisabled=showPostBuilder
|
2020-03-22 07:47:56 +01:00
|
|
|
)}}
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2017-11-30 03:55:15 +01:00
|
|
|
<div class="setting-gutter">
|
2021-04-12 16:19:53 +02:00
|
|
|
{{input type="checkbox" checked=action.post_builder}}
|
|
|
|
<span>{{i18n "admin.wizard.action.post_builder.checkbox"}}</span>
|
2017-11-24 05:32:15 +01:00
|
|
|
</div>
|
2017-10-17 09:18:53 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-04-15 03:23:41 +02:00
|
|
|
{{#if action.post_builder}}
|
2017-11-24 05:32:15 +01:00
|
|
|
<div class="setting full">
|
|
|
|
<div class="setting-label">
|
2021-04-12 16:19:53 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.post_builder.label"}}</label>
|
2017-11-24 05:32:15 +01:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2019-08-27 08:05:24 +02:00
|
|
|
<div class="setting-value editor">
|
2020-03-29 09:49:33 +02:00
|
|
|
{{wizard-text-editor
|
2020-03-21 18:30:11 +01:00
|
|
|
value=action.post_template
|
2020-03-29 09:49:33 +02:00
|
|
|
wizardFields=wizardFields}}
|
2017-11-24 05:32:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2019-08-27 08:05:24 +02:00
|
|
|
{{/if}}
|
2017-11-24 05:32:15 +01:00
|
|
|
|
2019-08-27 08:05:24 +02:00
|
|
|
{{#if publicTopicFields}}
|
2020-03-31 08:29:59 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
2018-09-18 03:56:42 +02:00
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.create_topic.category"}}</label>
|
2018-09-18 03:56:42 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2018-09-18 03:56:42 +02:00
|
|
|
<div class="setting-value">
|
2020-04-01 07:03:26 +02:00
|
|
|
{{wizard-mapper
|
2020-03-31 08:29:59 +02:00
|
|
|
inputs=action.category
|
2021-04-12 16:19:53 +02:00
|
|
|
property="category"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-03-31 08:29:59 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
textSelection="key,value"
|
2020-04-05 03:37:09 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
categorySelection="output"
|
|
|
|
wizardActionSelection="output"
|
|
|
|
outputDefaultSelection="category"
|
|
|
|
context="action"
|
2020-03-31 08:29:59 +02:00
|
|
|
)}}
|
2018-09-18 03:56:42 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-03-31 08:29:59 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.create_topic.tags"}}</label>
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-value">
|
2020-04-01 07:03:26 +02:00
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.tags
|
2021-04-12 16:19:53 +02:00
|
|
|
property="tags"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-03-31 08:29:59 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
tagSelection="output"
|
|
|
|
outputDefaultSelection="tag"
|
|
|
|
listSelection="output"
|
2020-04-05 03:37:09 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
context="action"
|
2020-03-31 08:29:59 +02:00
|
|
|
)}}
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-20 06:26:11 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_topic.visible"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-20 06:26:11 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.visible
|
2021-04-12 16:19:53 +02:00
|
|
|
property="visible"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-20 06:26:11 +02:00
|
|
|
options=(hash
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-20 06:26:11 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-08-27 08:05:24 +02:00
|
|
|
{{/if}}
|
2017-10-17 09:18:53 +02:00
|
|
|
|
2021-04-12 16:19:53 +02:00
|
|
|
{{#if sendMessage}}
|
2020-03-31 08:29:59 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.send_message.recipient"}}</label>
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2017-10-06 04:59:02 +02:00
|
|
|
<div class="setting-value">
|
2020-04-01 07:03:26 +02:00
|
|
|
{{wizard-mapper
|
2020-03-31 08:29:59 +02:00
|
|
|
inputs=action.recipient
|
2021-04-12 16:19:53 +02:00
|
|
|
property="recipient"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-03-31 08:29:59 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
textSelection="value,output"
|
2020-04-05 03:37:09 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
groupSelection="key,value"
|
|
|
|
userSelection="output"
|
|
|
|
outputDefaultSelection="user"
|
|
|
|
context="action"
|
2020-03-31 08:29:59 +02:00
|
|
|
)}}
|
2020-03-29 09:49:33 +02:00
|
|
|
</div>
|
2017-10-22 05:37:58 +02:00
|
|
|
</div>
|
2017-09-23 04:34:07 +02:00
|
|
|
{{/if}}
|
2017-10-06 04:59:02 +02:00
|
|
|
|
2017-10-05 02:36:46 +02:00
|
|
|
{{#if updateProfile}}
|
2020-03-29 09:49:33 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
2021-04-12 16:19:53 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.update_profile.setting"}}</label>
|
2020-03-29 09:49:33 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.profile_updates
|
2021-04-12 16:19:53 +02:00
|
|
|
property="profile_updates"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-03-21 18:30:11 +01:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
inputTypes="association"
|
|
|
|
textSelection="value"
|
|
|
|
userFieldSelection="key"
|
|
|
|
wizardFieldSelection="value"
|
|
|
|
wizardActionSelection="value"
|
|
|
|
keyDefaultSelection="userField"
|
|
|
|
context="action"
|
2020-03-21 18:30:11 +01:00
|
|
|
)}}
|
2017-10-06 04:59:02 +02:00
|
|
|
</div>
|
2017-09-23 04:34:07 +02:00
|
|
|
{{/if}}
|
2019-06-03 09:09:24 +02:00
|
|
|
|
|
|
|
{{#if sendToApi}}
|
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.send_to_api.api"}}</label>
|
2019-06-03 09:09:24 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2019-06-03 09:09:24 +02:00
|
|
|
<div class="setting-value">
|
2020-02-02 11:42:05 +01:00
|
|
|
{{combo-box
|
|
|
|
value=action.api
|
2021-04-14 05:37:19 +02:00
|
|
|
content=availableApis
|
2020-03-29 09:49:33 +02:00
|
|
|
onChange=(action (mut action.api))
|
2020-03-22 07:47:56 +01:00
|
|
|
options=(hash
|
2020-03-29 09:49:33 +02:00
|
|
|
isDisabled=action.custom_title_enabled
|
2021-04-12 16:19:53 +02:00
|
|
|
none="admin.wizard.action.send_to_api.select_an_api"
|
2020-03-22 07:47:56 +01:00
|
|
|
)}}
|
2019-06-03 09:09:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.send_to_api.endpoint"}}</label>
|
2019-06-03 09:09:24 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2019-06-03 09:09:24 +02:00
|
|
|
<div class="setting-value">
|
2020-02-02 11:42:05 +01:00
|
|
|
{{combo-box
|
|
|
|
value=action.api_endpoint
|
2021-04-14 05:37:19 +02:00
|
|
|
content=availableEndpoints
|
2020-03-29 09:49:33 +02:00
|
|
|
onChange=(action (mut action.api_endpoint))
|
2020-03-22 07:47:56 +01:00
|
|
|
options=(hash
|
2020-03-29 09:49:33 +02:00
|
|
|
isDisabled=apiEmpty
|
2021-04-12 16:19:53 +02:00
|
|
|
none="admin.wizard.action.send_to_api.select_an_endpoint"
|
2020-03-22 07:47:56 +01:00
|
|
|
)}}
|
2019-06-03 09:09:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-03-30 01:53:28 +02:00
|
|
|
<div class="setting full">
|
2019-06-03 09:09:24 +02:00
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.send_to_api.body"}}</label>
|
2019-06-03 09:09:24 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2019-06-03 09:09:24 +02:00
|
|
|
<div class="setting-value">
|
2020-03-29 09:49:33 +02:00
|
|
|
{{wizard-text-editor
|
2020-03-21 18:30:11 +01:00
|
|
|
value=action.api_body
|
2020-03-30 01:53:28 +02:00
|
|
|
previewEnabled=false
|
|
|
|
barEnabled=false
|
2021-04-14 05:37:19 +02:00
|
|
|
wizardFields=wizardFields
|
2021-04-12 16:19:53 +02:00
|
|
|
placeholder="admin.wizard.action.send_to_api.body_placeholder"}}
|
2019-06-03 09:09:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2019-07-12 03:00:10 +02:00
|
|
|
|
2019-07-01 04:31:50 +02:00
|
|
|
{{#if addToGroup}}
|
2020-03-29 09:49:33 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
2019-07-01 04:31:50 +02:00
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.group"}}</label>
|
2019-07-01 04:31:50 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2019-07-01 04:31:50 +02:00
|
|
|
<div class="setting-value">
|
2020-04-01 07:03:26 +02:00
|
|
|
{{wizard-mapper
|
2020-03-31 10:30:53 +02:00
|
|
|
inputs=action.group
|
2021-04-12 16:19:53 +02:00
|
|
|
property="group"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-03-21 18:30:11 +01:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
textSelection="value,output"
|
|
|
|
wizardFieldSelection="key,value,assignment"
|
|
|
|
userFieldSelection="key,value,assignment"
|
2020-10-20 01:15:03 +02:00
|
|
|
wizardActionSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
groupSelection="value,output"
|
|
|
|
outputDefaultSelection="group"
|
|
|
|
context="action"
|
2020-03-21 18:30:11 +01:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-01 04:31:50 +02:00
|
|
|
{{/if}}
|
2019-07-02 06:49:14 +02:00
|
|
|
|
|
|
|
{{#if routeTo}}
|
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
2020-03-30 01:53:28 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.route_to.url"}}</label>
|
2019-07-02 06:49:14 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2019-07-02 06:49:14 +02:00
|
|
|
<div class="setting-value">
|
2020-04-29 03:47:08 +02:00
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.url
|
2021-04-12 16:19:53 +02:00
|
|
|
property="url"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-04-29 03:47:08 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-04-29 03:47:08 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
groupSelection="key,value"
|
|
|
|
categorySelection="key,value"
|
|
|
|
userSelection="key,value"
|
2020-04-29 03:47:08 +02:00
|
|
|
)}}
|
2019-07-02 06:49:14 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-02 07:21:57 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2020-05-23 00:42:26 +02:00
|
|
|
{{#if watchCategories}}
|
2020-05-24 12:20:15 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.watch_categories.categories"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-05-24 12:20:15 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.categories
|
2021-04-12 16:19:53 +02:00
|
|
|
property="categories"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-05-24 12:20:15 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
textSelection="key,value"
|
2020-05-24 12:20:15 +02:00
|
|
|
wizardFieldSelection=true
|
2020-07-20 05:06:36 +02:00
|
|
|
wizardActionSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
categorySelection="output"
|
|
|
|
context="action"
|
2020-05-24 12:20:15 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-05-26 12:47:15 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
2020-05-25 15:59:31 +02:00
|
|
|
<div class="setting-label">
|
2020-05-26 12:47:15 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.watch_categories.mute_remainder"}}</label>
|
2020-05-25 15:59:31 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="setting-value">
|
2020-05-26 12:47:15 +02:00
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.mute_remainder
|
2021-04-12 16:19:53 +02:00
|
|
|
property="mute_remainder"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-05-25 15:59:31 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-05-26 12:47:15 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
2020-05-25 15:59:31 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-05-23 00:42:26 +02:00
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
2020-05-26 12:47:15 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.watch_categories.notification_level.label"}}</label>
|
2020-05-23 00:42:26 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="setting-value">
|
2020-05-26 12:47:15 +02:00
|
|
|
{{combo-box
|
|
|
|
value=action.notification_level
|
2021-04-14 05:37:19 +02:00
|
|
|
content=availableNotificationLevels
|
2020-05-26 12:47:15 +02:00
|
|
|
onChange=(action (mut action.notification_level))
|
2020-05-23 00:42:26 +02:00
|
|
|
options=(hash
|
2020-05-26 12:47:15 +02:00
|
|
|
isDisabled=action.custom_title_enabled
|
2021-04-12 16:19:53 +02:00
|
|
|
none="admin.wizard.action.watch_categories.select_a_notification_level"
|
2020-05-23 00:42:26 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-20 05:06:36 +02:00
|
|
|
<div class="setting full">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.watch_categories.wizard_user"}}</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="setting-value">
|
|
|
|
{{input type="checkbox" checked=action.wizard_user}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-20 05:06:36 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.watch_categories.usernames"}}</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.usernames
|
2021-04-12 16:19:53 +02:00
|
|
|
property="usernames"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-20 05:06:36 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-20 05:06:36 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
userSelection="output"
|
2020-07-20 05:06:36 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-23 00:42:26 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
{{#if createGroup}}
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.name"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.name
|
2021-04-12 16:19:53 +02:00
|
|
|
property="name"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.full_name"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.full_name
|
2021-04-12 16:19:53 +02:00
|
|
|
property="full_name"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.title"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.title
|
2021-04-12 16:19:53 +02:00
|
|
|
property="title"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.bio_raw"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.bio_raw
|
2021-04-12 16:19:53 +02:00
|
|
|
property="bio_raw"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-07-16 09:50:09 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.owner_usernames"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 09:50:09 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.owner_usernames
|
2021-04-12 16:19:53 +02:00
|
|
|
property="owner_usernames"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 09:50:09 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userSelection="output"
|
|
|
|
context="action"
|
2020-07-16 09:50:09 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.usernames"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 09:50:09 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.usernames
|
2021-04-12 16:19:53 +02:00
|
|
|
property="usernames"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 09:50:09 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userSelection="output"
|
|
|
|
context="action"
|
2020-07-16 09:50:09 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.grant_trust_level"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.grant_trust_level
|
2021-04-12 16:19:53 +02:00
|
|
|
property="grant_trust_level"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.mentionable_level"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.mentionable_level
|
2021-04-12 16:19:53 +02:00
|
|
|
property="mentionable_level"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.messageable_level"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.messageable_level
|
2021-04-12 16:19:53 +02:00
|
|
|
property="messageable_level"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.visibility_level"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.visibility_level
|
2021-04-12 16:19:53 +02:00
|
|
|
property="visibility_level"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
</div>
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_group.members_visibility_level"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-16 07:25:06 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.members_visibility_level
|
2021-04-12 16:19:53 +02:00
|
|
|
property="members_visibility_level"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-16 07:25:06 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-07-16 07:25:06 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
{{#if createCategory}}
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_category.name"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.name
|
2021-04-12 16:19:53 +02:00
|
|
|
property="name"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-09 04:19:36 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
textSelection="key,value"
|
2020-07-09 04:19:36 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
context="action"
|
2020-07-09 04:19:36 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_category.slug"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.slug
|
2021-04-12 16:19:53 +02:00
|
|
|
property="slug"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-09 04:19:36 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
context="action"
|
2020-07-09 04:19:36 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_category.color"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.color
|
2021-04-12 16:19:53 +02:00
|
|
|
property="color"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-09 04:19:36 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
context="action"
|
2020-07-09 04:19:36 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_category.text_color"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.text_color
|
2021-04-12 16:19:53 +02:00
|
|
|
property="text_color"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-09 04:19:36 +02:00
|
|
|
options=(hash
|
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
context="action"
|
2020-07-09 04:19:36 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_category.parent_category"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.parent_category_id
|
2021-04-12 16:19:53 +02:00
|
|
|
property="parent_category_id"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-09 04:19:36 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
textSelection="key,value"
|
2020-07-09 04:19:36 +02:00
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
userFieldSelection="key,value"
|
|
|
|
categorySelection="output"
|
|
|
|
context="action"
|
2020-07-09 04:19:36 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.create_category.permissions"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-07-09 04:19:36 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.permissions
|
2021-04-12 16:19:53 +02:00
|
|
|
property="permissions"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-07-09 04:19:36 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
inputTypes="association"
|
2020-07-09 04:19:36 +02:00
|
|
|
textSelection=true
|
|
|
|
wizardFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
wizardActionSelection="key"
|
2020-07-09 04:19:36 +02:00
|
|
|
userFieldSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
groupSelection="key"
|
|
|
|
context="action"
|
2020-07-09 04:19:36 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2020-04-20 13:40:32 +02:00
|
|
|
{{#if showAdvanced}}
|
2020-04-02 07:21:57 +02:00
|
|
|
{{wizard-advanced-toggle showAdvanced=action.showAdvanced}}
|
|
|
|
|
|
|
|
{{#if action.showAdvanced}}
|
|
|
|
<div class="advanced-settings">
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-07 15:33:11 +02:00
|
|
|
{{#if hasCustomFields}}
|
2020-04-02 07:21:57 +02:00
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
2021-04-12 16:19:53 +02:00
|
|
|
<label>{{i18n "admin.wizard.action.custom_fields.label"}}</label>
|
2020-04-02 07:21:57 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
2021-04-14 05:37:19 +02:00
|
|
|
inputs=action.custom_fields
|
2021-04-12 16:19:53 +02:00
|
|
|
property="custom_fields"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-04-02 07:21:57 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
inputTypes="association"
|
|
|
|
customFieldSelection="key"
|
|
|
|
wizardFieldSelection="value"
|
|
|
|
wizardActionSelection="value"
|
|
|
|
userFieldSelection="value"
|
|
|
|
keyPlaceholder="admin.wizard.action.custom_fields.key"
|
2021-06-08 13:39:49 +02:00
|
|
|
context=customFieldsContext
|
2020-04-02 07:21:57 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
{{#if sendMessage}}
|
|
|
|
<div class="setting full field-mapper-setting">
|
|
|
|
<div class="setting-label">
|
2021-04-12 16:19:53 +02:00
|
|
|
<label>{{i18n "admin.wizard.required"}}</label>
|
2020-04-02 07:21:57 +02:00
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{wizard-mapper
|
|
|
|
inputs=action.required
|
2021-04-12 16:19:53 +02:00
|
|
|
property="required"
|
|
|
|
onUpdate=(action "mappedFieldUpdated")
|
2020-04-02 07:21:57 +02:00
|
|
|
options=(hash
|
2021-04-12 16:19:53 +02:00
|
|
|
textSelection="value"
|
2020-04-05 03:37:09 +02:00
|
|
|
wizardFieldSelection=true
|
2020-04-02 10:21:03 +02:00
|
|
|
userFieldSelection=true
|
2020-04-02 07:21:57 +02:00
|
|
|
groupSelection=true
|
2021-04-12 16:19:53 +02:00
|
|
|
context="action"
|
2020-04-02 07:21:57 +02:00
|
|
|
)}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-10-20 02:42:10 +02:00
|
|
|
{{#if showPostAdvanced}}
|
2020-04-02 07:21:57 +02:00
|
|
|
<div class="setting full">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.skip_redirect.label"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
<div class="setting-value">
|
2021-04-12 16:19:53 +02:00
|
|
|
{{input type="checkbox" checked=action.skip_redirect}}
|
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
<span>
|
2021-04-12 16:19:53 +02:00
|
|
|
{{i18n "admin.wizard.action.skip_redirect.description" type="topic"}}
|
2020-04-02 07:21:57 +02:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-10-20 02:42:10 +02:00
|
|
|
<div class="setting full">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.suppress_notifications.label"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-10-20 02:42:10 +02:00
|
|
|
<div class="setting-value">
|
2021-04-12 16:19:53 +02:00
|
|
|
{{input type="checkbox" checked=action.suppress_notifications}}
|
|
|
|
|
2020-10-20 02:42:10 +02:00
|
|
|
<span>
|
2021-04-12 16:19:53 +02:00
|
|
|
{{i18n "admin.wizard.action.suppress_notifications.description" type="topic"}}
|
2020-10-20 02:42:10 +02:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-02 07:21:57 +02:00
|
|
|
{{/if}}
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
{{#if routeTo}}
|
|
|
|
<div class="setting">
|
|
|
|
<div class="setting-label">
|
|
|
|
<label>{{i18n "admin.wizard.action.route_to.code"}}</label>
|
|
|
|
</div>
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
<div class="setting-value">
|
|
|
|
{{input value=action.code}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2019-07-02 06:49:14 +02:00
|
|
|
</div>
|
2020-04-02 07:21:57 +02:00
|
|
|
{{/if}}
|
2019-07-02 06:49:14 +02:00
|
|
|
{{/if}}
|