xref: /plugin/oauth/conf/metadata.php (revision 3c0138db6331751d1ea0948f418a981582962f18)
1<?php
2/**
3 * Options 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(false) as $service) {
11    $service = strtolower($service);
12    $meta["$service-key"]    = array('string');
13    $meta["$service-secret"] = array('string');
14}
15