aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/github.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-14 16:00:41 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-14 16:00:41 -0400
commit6a2871692cb9b2e9027b026604e8f456f17d1b44 (patch)
tree5d07bf13b5f3522dea0df2553df0265c59015968 /phpBB/phpbb/auth/provider/oauth/service/github.php
parent55cdc874e6519242f7031de034df8d8c00ae283f (diff)
downloadforums-6a2871692cb9b2e9027b026604e8f456f17d1b44.tar
forums-6a2871692cb9b2e9027b026604e8f456f17d1b44.tar.gz
forums-6a2871692cb9b2e9027b026604e8f456f17d1b44.tar.bz2
forums-6a2871692cb9b2e9027b026604e8f456f17d1b44.tar.xz
forums-6a2871692cb9b2e9027b026604e8f456f17d1b44.zip
[feature/oauth] Get service credentials on each OAuth service
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/github.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/github.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/github.php b/phpBB/phpbb/auth/provider/oauth/service/github.php
index 1eddb26906..30d23b0e4f 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/github.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/github.php
@@ -31,4 +31,15 @@ class phpbb_auth_provider_oauth_service_github extends phpbb_auth_provider_oauth
'user',
);
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function get_service_credentials()
+ {
+ return array(
+ 'key' => $this->config['auth_oauth_github_key'],
+ 'secret' => $this->config['auth_oauth_github_secret'],
+ );
+ }
}