通知設定の追加

通知設定一覧

{% set tags = { pageCreate: ' CREATE', pageEdit: ' EDIT', pageDelete: ' DELETE', pageMove: ' MOVE', pageLike: ' LIKE', comment: ' POST' } %} {% set detailPageUrl = '/admin/global-notification/detail' %} {% for globalNotif in globalNotifications %} {% endfor %}
ON/OFF Pattern Triggers Notify To

Path Pattern of wiki. Expression with * is supported.

{% for tag in tags %} {{ tag | safe }} {% endfor %}

Notifications are sent to this email.

{{ globalNotif.triggerPath }} {% for event in globalNotif.triggerEvents %} {{ tags[event] | safe }} {% endfor %} {% if globalNotif.__t == 'mail' %}emailicon {{ globalNotif.toEmail }} {% elseif globalNotif.__t == 'slack' %}slackicon {{ globalNotif.slackChannels }} {% endif %}