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