Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cucumber_ui
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
cucumber_ui
Commits
466cfced
Commit
466cfced
authored
2 years ago
by
Tasneem Natshah
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3309029
: Change schema config names
parent
e955c733
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/install/cucumber_ui.settings.yml
+0
-2
0 additions, 2 deletions
config/install/cucumber_ui.settings.yml
config/schema/cucumber_ui.schema.yml
+0
-6
0 additions, 6 deletions
config/schema/cucumber_ui.schema.yml
src/Form/CucumberUiSettings.php
+0
-19
0 additions, 19 deletions
src/Form/CucumberUiSettings.php
with
0 additions
and
27 deletions
config/install/cucumber_ui.settings.yml
+
0
−
2
View file @
466cfced
...
...
@@ -6,8 +6,6 @@ html_report: true
html_report_dir
:
"
tests/reports"
log_report_dir
:
"
tests/logs"
editing_mode
:
"
free_text"
http_user
:
"
"
http_password
:
"
"
http_auth_headless_only
:
true
save_user_testing_features
:
false
needs_browser
:
true
...
...
This diff is collapsed.
Click to expand it.
config/schema/cucumber_ui.schema.yml
+
0
−
6
View file @
466cfced
...
...
@@ -26,12 +26,6 @@ cucumber_ui.settings:
editing_mode
:
type
:
string
label
:
"
Editing
mode"
http_user
:
type
:
string
label
:
"
HTTP
Authentication
User"
http_password
:
type
:
string
label
:
"
HTTP
Authentication
Password"
http_auth_headless_only
:
type
:
boolean
label
:
"
HTTP
authentication
only"
...
...
This diff is collapsed.
Click to expand it.
src/Form/CucumberUiSettings.php
+
0
−
19
View file @
466cfced
...
...
@@ -138,25 +138,6 @@ class CucumberUiSettings extends ConfigFormBase {
'#suffix'
=>
'</div></div>'
,
];
$form
[
'http_user'
]
=
[
'#title'
=>
$this
->
t
(
'HTTP authentication user'
),
'#description'
=>
$this
->
t
(
'Username for the basic authentication for the targeted site.'
),
'#type'
=>
'textfield'
,
'#maxlength'
=>
512
,
'#default_value'
=>
$config
->
get
(
'http_user'
),
'#prefix'
=>
'<div class="panel">
<h3 class="panel__title">'
.
$this
->
t
(
'HTTP Authentication'
)
.
'</h3>
<div class="panel__content">'
,
];
$form
[
'http_password'
]
=
[
'#title'
=>
$this
->
t
(
'HTTP authentication password'
),
'#description'
=>
$this
->
t
(
'Password for the basic authentication for the targeted site.'
),
'#type'
=>
'password'
,
'#default_value'
=>
$config
->
get
(
'http_password'
),
'#suffix'
=>
'</div></div>'
,
];
$form
[
'http_auth_headless_only'
]
=
[
'#type'
=>
'checkbox'
,
'#title'
=>
$this
->
t
(
'Enable HTTP authentication only for headless testing.'
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment