xref: /plugin/oauth/conf/default.php (revision dfbdd5195f4924583ce7fad67ec766a581efe4b6)
1<?php
2/**
3 * Default settings for the oauth plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8/** @var helper_plugin_oauth $helper */
9$helper = plugin_load('helper', 'oauth');
10foreach($helper->listServices() as $service) {
11    $service = strtolower($service);
12    $conf["$service-key"]    = '';
13    $conf["$service-secret"] = '';
14}
15