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