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

Commit

Permalink
Rename CSS class
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Jan 8, 2017
1 parent 30034e4 commit 45b6016
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,16 @@ public function getPluginAuthor()

public function getPluginVersion()
{
return '1.0.4';
return '1.0.5';
}

public function getPluginHomepage()
{
return 'https://github.com/kanboard/plugin-gitlab-webhook';
}

public function getCompatibleVersion()
{
return '>=1.0.37';
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Author
Requirements
------------

- Kanboard >= 1.0.29
- Kanboard >= 1.0.37
- Gitlab webhooks configured for a project

Installation
Expand Down
6 changes: 3 additions & 3 deletions Template/project/integrations.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h3><i class="fa fa-gitlab fa-fw" aria-hidden="true"></i><?= t('Gitlab webhooks') ?></h3>
<div class="listing">
<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/>
<p class="form-help"><a href="https://kanboard.net/plugin/gitlab-webhook" target="_blank"><?= t('Help on Gitlab webhooks') ?></a></p>
<div class="panel">
<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/>
<p class="form-help"><a href="https://kanboard.net/plugin/gitlab-webhook" target="_blank"><?= t('Help on Gitlab webhooks') ?></a></p>
</div>

0 comments on commit 45b6016

Please sign in to comment.