[GooglePlusPostBridge] fix parameter 'username' requirement status
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
946a0744ed
commit
ca9879fac9
1 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,10 @@ class GooglePlusPostBridge extends BridgeAbstract
|
||||||
$this->description = "Returns user public post (without API).";
|
$this->description = "Returns user public post (without API).";
|
||||||
|
|
||||||
$this->parameters[] = array(
|
$this->parameters[] = array(
|
||||||
'username'=>array('name'=>'username or Id')
|
'username'=>array(
|
||||||
|
'name'=>'username or Id',
|
||||||
|
'required'=>true
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue