diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-05 12:52:44 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-05 12:52:44 -0400 |
commit | aa2ca3342dc6783c7a0a679c11ac94213a7226bb (patch) | |
tree | a6ecc294d2e146fd25702299608889331e39f97c /app/Template | |
parent | 0de269041389c0ab521de30ca2b878d242f691b8 (diff) | |
parent | bc6b443c3db4f260bdc1460009c8110b54b3c257 (diff) |
Merge pull-request #981
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/config/integrations.php | 2 | ||||
-rw-r--r-- | app/Template/project/integrations.php | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/Template/config/integrations.php b/app/Template/config/integrations.php index a1299806..9c80b499 100644 --- a/app/Template/config/integrations.php +++ b/app/Template/config/integrations.php @@ -77,6 +77,8 @@ <?= $this->form->label(t('Webhook URL'), 'integration_slack_webhook_url') ?> <?= $this->form->text('integration_slack_webhook_url', $values, $errors) ?> + <?= $this->form->label(t('Channel/Group/User (Optional)'), 'integration_slack_webhook_channel') ?> + <?= $this->form->text('integration_slack_webhook_channel', $values, $errors) ?> <p class="form-help"><a href="http://kanboard.net/documentation/slack" target="_blank"><?= t('Help on Slack integration') ?></a></p> </div> diff --git a/app/Template/project/integrations.php b/app/Template/project/integrations.php index 698e438c..445e7bfb 100644 --- a/app/Template/project/integrations.php +++ b/app/Template/project/integrations.php @@ -85,6 +85,8 @@ <?= $this->form->label(t('Webhook URL'), 'slack_webhook_url') ?> <?= $this->form->text('slack_webhook_url', $values, $errors) ?> + <?= $this->form->label(t('Channel/Group/User (Optional)'), 'slack_webhook_channel') ?> + <?= $this->form->text('slack_webhook_channel', $values, $errors) ?> <p class="form-help"><a href="http://kanboard.net/documentation/slack" target="_blank"><?= t('Help on Slack integration') ?></a></p> |