1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-25 19:01:18 +02:00

[GooglePlusPostBridge] fix parameter 'username' requirement status

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
Pierre Mazière
2016-08-25 00:45:20 +02:00
parent 946a0744ed
commit ca9879fac9

View File

@@ -12,7 +12,10 @@ class GooglePlusPostBridge extends BridgeAbstract
$this->description = "Returns user public post (without API).";
$this->parameters[] = array(
'username'=>array('name'=>'username or Id')
'username'=>array(
'name'=>'username or Id',
'required'=>true
)
);
}