diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-16 20:35:56 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-16 20:35:56 -0400 |
commit | ede1f1d9b0c06a05845f4125d59c97c29b6d9842 (patch) | |
tree | 2fc9f21c586501d43440dace17e71bfb40618bfc /app/Template/user/external.php | |
parent | 12036aa21f4308aca4d816864b357f9627a0f437 (diff) |
Refactoring of Github authentication (oauth url change)
Diffstat (limited to 'app/Template/user/external.php')
-rw-r--r-- | app/Template/user/external.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/user/external.php b/app/Template/user/external.php index 18d40d79..3b872e85 100644 --- a/app/Template/user/external.php +++ b/app/Template/user/external.php @@ -24,9 +24,9 @@ <p class="listing"> <?php if ($this->user->isCurrentUser($user['id'])): ?> <?php if (empty($user['github_id'])): ?> - <?= $this->url->link(t('Link my GitHub Account'), 'user', 'github', array(), true) ?> + <?= $this->url->link(t('Link my Github Account'), 'oauth', 'github', array(), true) ?> <?php else: ?> - <?= $this->url->link(t('Unlink my GitHub Account'), 'user', 'unlinkGitHub', array(), true) ?> + <?= $this->url->link(t('Unlink my Github Account'), 'oauth', 'unlink', array('backend' => 'github'), true) ?> <?php endif ?> <?php else: ?> <?= empty($user['github_id']) ? t('No account linked.') : t('Account linked.') ?> |