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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
6f8ececc
Commit
6f8ececc
authored
Jun 29, 2018
by
Jan Provaznik
Committed by
Jarka Kadlecová
Jul 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move todo_group_options to CE
parent
7458ca8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
app/helpers/todos_helper.rb
app/helpers/todos_helper.rb
+10
-0
No files found.
app/helpers/todos_helper.rb
View file @
6f8ececc
...
...
@@ -167,4 +167,14 @@ module TodosHelper
def
show_todo_state?
(
todo
)
(
todo
.
target
.
is_a?
(
MergeRequest
)
||
todo
.
target
.
is_a?
(
Issue
))
&&
%w(closed merged)
.
include?
(
todo
.
target
.
state
)
end
def
todo_group_options
groups
=
current_user
.
authorized_groups
groups
=
groups
.
map
do
|
group
|
{
id:
group
.
id
,
text:
group
.
full_name
}
end
groups
.
unshift
({
id:
''
,
text:
'Any Group'
}).
to_json
end
end
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