Skip to content
This repository was archived by the owner on Apr 5, 2020. It is now read-only.

Commit 45b6016

Browse files
committed
Rename CSS class
1 parent 30034e4 commit 45b6016

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

Plugin.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,16 @@ public function getPluginAuthor()
5050

5151
public function getPluginVersion()
5252
{
53-
return '1.0.4';
53+
return '1.0.5';
5454
}
5555

5656
public function getPluginHomepage()
5757
{
5858
return 'https://github.com/kanboard/plugin-gitlab-webhook';
5959
}
60+
61+
public function getCompatibleVersion()
62+
{
63+
return '>=1.0.37';
64+
}
6065
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Author
1414
Requirements
1515
------------
1616

17-
- Kanboard >= 1.0.29
17+
- Kanboard >= 1.0.37
1818
- Gitlab webhooks configured for a project
1919

2020
Installation

Template/project/integrations.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h3><i class="fa fa-gitlab fa-fw" aria-hidden="true"></i><?= t('Gitlab webhooks') ?></h3>
2-
<div class="listing">
3-
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->href('WebhookController', 'handler', array('plugin' => 'GitlabWebhook', 'token' => $webhook_token, 'project_id' => $project['id']), false, '', true) ?>"/><br/>
4-
<p class="form-help"><a href="https://kanboard.net/plugin/gitlab-webhook" target="_blank"><?= t('Help on Gitlab webhooks') ?></a></p>
2+
<div class="panel">
3+
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->href('WebhookController', 'handler', array('plugin' => 'GitlabWebhook', 'token' => $webhook_token, 'project_id' => $project['id']), false, '', true) ?>"/><br/>
4+
<p class="form-help"><a href="https://kanboard.net/plugin/gitlab-webhook" target="_blank"><?= t('Help on Gitlab webhooks') ?></a></p>
55
</div>

0 commit comments

Comments
 (0)