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 c4c17f2 commit 37daef8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
7 changes: 6 additions & 1 deletion Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,16 @@ public function getPluginAuthor()

public function getPluginVersion()
{
return '1.0.2';
return '1.0.3';
}

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

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
- OAuth Github API credentials (available in your [Settings > Applications > Developer applications](https://github.com/settings/applications))

Installation
Expand Down
3 changes: 1 addition & 2 deletions Template/config/integration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<h3><i class="fa fa-github fa-fw"></i><?= t('Github Authentication') ?></h3>
<div class="listing">

<div class="panel">
<?= $this->form->label(t('Github OAuth callback URL'), 'github_oauth_url') ?>
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->href('OAuthController', 'handler', array('plugin' => 'GithubAuth'), false, '', true) ?>"/>

Expand Down
4 changes: 2 additions & 2 deletions Template/user/external.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h3><i class="fa fa-github fa-fw"></i> <?= t('Github Account') ?></h3>

<p class="listing">
<div class="panel">
<?php if ($this->user->isCurrentUser($user['id'])): ?>
<?php if (empty($user['github_id'])): ?>
<?= $this->url->link(t('Link my Github Account'), 'OAuthController', 'handler', array('plugin' => 'GithubAuth'), true) ?>
Expand All @@ -10,4 +10,4 @@
<?php else: ?>
<?= empty($user['github_id']) ? t('No account linked.') : t('Account linked.') ?>
<?php endif ?>
</p>
</div>

0 comments on commit 37daef8

Please sign in to comment.