fix: add a few example/default values

This commit is contained in:
Dag 2022-03-25 15:33:34 +01:00
parent 2bd3f22dd5
commit 3187592dba
3 changed files with 6 additions and 2 deletions

View File

@ -11,6 +11,8 @@ class FilterBridge extends FeedExpander {
const PARAMETERS = array(array( const PARAMETERS = array(array(
'url' => array( 'url' => array(
'name' => 'Feed URL', 'name' => 'Feed URL',
'type' => 'text',
'defaultValue' => 'https://lorem-rss.herokuapp.com/feed?unit=day',
'required' => true, 'required' => true,
), ),
'filter' => array( 'filter' => array(

View File

@ -9,7 +9,8 @@ class FurAffinityUserBridge extends BridgeAbstract {
'name' => 'Search Username', 'name' => 'Search Username',
'type' => 'text', 'type' => 'text',
'required' => true, 'required' => true,
'title' => 'Username to fetch the gallery for' 'title' => 'Username to fetch the gallery for',
'exampleValue' => 'armundy',
), ),
'loginUsername' => array( 'loginUsername' => array(
'name' => 'Login Username', 'name' => 'Login Username',

View File

@ -8,7 +8,8 @@ class PillowfortBridge extends BridgeAbstract {
'username' => array( 'username' => array(
'name' => 'Username', 'name' => 'Username',
'type' => 'text', 'type' => 'text',
'required' => true 'required' => true,
'exampleValue' => 'vaxis2',
), ),
'noava' => array( 'noava' => array(
'name' => 'Hide avatar', 'name' => 'Hide avatar',