aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/yammer.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/yammer.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/yammer.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/yammer.php b/phpBB/phpbb/auth/provider/oauth/service/yammer.php
index 4cbc153329..13c638def7 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/yammer.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/yammer.php
@@ -22,5 +22,14 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_auth_provider_oauth_service_yammer extends phpbb_auth_provider_oauth_service_base
{
-
+ /**
+ * {@inheritdoc}
+ */
+ public function get_service_credentials()
+ {
+ return array(
+ 'key' => $this->config['auth_oauth_yammer_key'],
+ 'secret' => $this->config['auth_oauth_yammer_secret'],
+ );
+ }
}