1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-08 17:46:34 +02:00

[Multiple] Fix all exampleValues and required variables (#2296)

This commit is contained in:
Bocki
2022-03-24 11:59:34 +01:00
committed by GitHub
parent f766193106
commit 1a8d0babd1
90 changed files with 180 additions and 68 deletions

View File

@@ -11,19 +11,19 @@ class GogsBridge extends BridgeAbstract {
'global' => array(
'host' => array(
'name' => 'Host',
'exampleValue' => 'https://gogs.io',
'exampleValue' => 'notabug.org',
'required' => true,
'title' => 'Host name without trailing slash',
),
'user' => array(
'name' => 'Username',
'exampleValue' => 'gogs',
'exampleValue' => 'PDModdingCommunity',
'required' => true,
'title' => 'User name as it appears in the URL',
),
'project' => array(
'name' => 'Project name',
'exampleValue' => 'gogs',
'exampleValue' => 'PD-Loader',
'required' => true,
'title' => 'Project name as it appears in the URL',
),
@@ -47,7 +47,7 @@ class GogsBridge extends BridgeAbstract {
'issue' => array(
'name' => 'Issue number',
'type' => 'number',
'exampleValue' => 102,
'exampleValue' => 100,
'required' => true,
'title' => 'Issue number from the issues list',
),