summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-02-05 13:40:00 -0800
committerZach Copley <zach@status.net>2010-02-05 13:40:00 -0800
commitff509feff0c45ddc755be54477d4da077afa2dfe (patch)
tree20835e9dc15430945f06b15314c428e48e5efb9c
parentb65ed56c7a36e3d4aeca36c6087fafcf8b2fc3fd (diff)
Updated /api/statusnet/config.xml to show new config params potentially relevant to client devs
-rw-r--r--actions/apistatusnetconfig.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php
index d2d6e7750..0345a9bc0 100644
--- a/actions/apistatusnetconfig.php
+++ b/actions/apistatusnetconfig.php
@@ -52,13 +52,17 @@ require_once INSTALLDIR . '/lib/api.php';
class ApiStatusnetConfigAction extends ApiAction
{
var $keys = array(
- 'site' => array('name', 'server', 'theme', 'path', 'fancy', 'language',
- 'email', 'broughtby', 'broughtbyurl', 'closed',
- 'inviteonly', 'private','textlimit'),
- 'license' => array('url', 'title', 'image'),
+ 'site' => array('name', 'server', 'theme', 'path', 'logo', 'fancy', 'language',
+ 'email', 'broughtby', 'broughtbyurl', 'timezone', 'closed',
+ 'inviteonly', 'private', 'textlimit', 'ssl', 'sslserver', 'shorturllength'),
+ 'license' => array('type', 'owner', 'url', 'title', 'image'),
'nickname' => array('featured'),
+ 'profile' => array('biolimit'),
+ 'group' => array('desclimit'),
+ 'notice' => array('contentlimit'),
'throttle' => array('enabled', 'count', 'timespan'),
- 'xmpp' => array('enabled', 'server', 'user')
+ 'xmpp' => array('enabled', 'server', 'port', 'user'),
+ 'integration' => array('source')
);
/**