aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/fitbit.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/fitbit.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/fitbit.php13
1 files changed, 11 insertions, 2 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/fitbit.php b/phpBB/phpbb/auth/provider/oauth/service/fitbit.php
index a0f63a40e7..d75b971fcf 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/fitbit.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/fitbit.php
@@ -20,7 +20,16 @@ if (!defined('IN_PHPBB'))
*
* @package auth
*/
-class phpbb_auth_provider_oauth_service_box extends phpbb_auth_provider_oauth_service_base
+class phpbb_auth_provider_oauth_service_fitbit extends phpbb_auth_provider_oauth_service_base
{
-
+ /**
+ * {@inheritdoc}
+ */
+ public function get_service_credentials()
+ {
+ return array(
+ 'key' => $this->config['auth_oauth_fitbit_key'],
+ 'secret' => $this->config['auth_oauth_fitbit_secret'],
+ );
+ }
}