Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
7d03bacf
Commit
7d03bacf
authored
Jan 22, 2021
by
Jonathan Schafer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add boolean conversion for parameter
parent
701a6fd0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
app/controllers/projects/issues_controller.rb
app/controllers/projects/issues_controller.rb
+6
-1
No files found.
app/controllers/projects/issues_controller.rb
View file @
7d03bacf
...
@@ -105,7 +105,7 @@ class Projects::IssuesController < Projects::ApplicationController
...
@@ -105,7 +105,7 @@ class Projects::IssuesController < Projects::ApplicationController
build_params
=
issue_create_params
.
merge
(
build_params
=
issue_create_params
.
merge
(
merge_request_to_resolve_discussions_of:
params
[
:merge_request_to_resolve_discussions_of
],
merge_request_to_resolve_discussions_of:
params
[
:merge_request_to_resolve_discussions_of
],
discussion_to_resolve:
params
[
:discussion_to_resolve
],
discussion_to_resolve:
params
[
:discussion_to_resolve
],
confidential:
issue_create_params
[
:confidential
]
||
!!
Gitlab
::
Utils
.
to_boolean
(
params
[
:issue
][
:confidential
])
confidential:
confidential_issue?
)
)
service
=
::
Issues
::
BuildService
.
new
(
project
,
current_user
,
build_params
)
service
=
::
Issues
::
BuildService
.
new
(
project
,
current_user
,
build_params
)
...
@@ -393,6 +393,11 @@ class Projects::IssuesController < Projects::ApplicationController
...
@@ -393,6 +393,11 @@ class Projects::IssuesController < Projects::ApplicationController
action_name
==
'service_desk'
action_name
==
'service_desk'
end
end
def
confidential_issue?
!!
Gitlab
::
Utils
.
to_boolean
(
issue_create_params
[
:confidential
])
||
!!
Gitlab
::
Utils
.
to_boolean
(
params
[
:issue
][
:confidential
])
end
def
run_null_hypothesis_experiment
def
run_null_hypothesis_experiment
experiment
(
:null_hypothesis
,
project:
project
)
do
|
e
|
experiment
(
:null_hypothesis
,
project:
project
)
do
|
e
|
e
.
use
{
}
# define the control
e
.
use
{
}
# define the control
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment