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
951a5cca
Commit
951a5cca
authored
Sep 15, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport part of
c777bb91
and
4074cb3b
from EE
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
6528d52a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
app/controllers/concerns/issuable_collections.rb
app/controllers/concerns/issuable_collections.rb
+1
-1
app/finders/issuable_finder.rb
app/finders/issuable_finder.rb
+4
-0
No files found.
app/controllers/concerns/issuable_collections.rb
View file @
951a5cca
...
@@ -106,7 +106,7 @@ module IssuableCollections
...
@@ -106,7 +106,7 @@ module IssuableCollections
# @filter_params[:authorized_only] = true
# @filter_params[:authorized_only] = true
end
end
@filter_params
@filter_params
.
permit
(
IssuableFinder
::
VALID_PARAMS
)
end
end
def
set_default_state
def
set_default_state
...
...
app/finders/issuable_finder.rb
View file @
951a5cca
...
@@ -25,6 +25,10 @@ class IssuableFinder
...
@@ -25,6 +25,10 @@ class IssuableFinder
NONE
=
'0'
.
freeze
NONE
=
'0'
.
freeze
SCALAR_PARAMS
=
%i(scope state group_id project_id milestone_title assignee_id search label_name sort assignee_username author_id author_username authorized_only due_date iids non_archived weight)
.
freeze
ARRAY_PARAMS
=
{
label_name:
[],
iids:
[],
assignee_username:
[]
}.
freeze
VALID_PARAMS
=
(
SCALAR_PARAMS
+
[
ARRAY_PARAMS
]).
freeze
attr_accessor
:current_user
,
:params
attr_accessor
:current_user
,
:params
def
initialize
(
current_user
,
params
=
{})
def
initialize
(
current_user
,
params
=
{})
...
...
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