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
424cb9cc
Commit
424cb9cc
authored
Feb 18, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
💄
Cosmetic changes
parent
72009896
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
21 deletions
+21
-21
app/services/task_service.rb
app/services/task_service.rb
+21
-21
No files found.
app/services/task_service.rb
View file @
424cb9cc
...
...
@@ -89,7 +89,8 @@ class TaskService
#
def
new_note
(
note
)
# Skip system notes, like status changes and cross-references
unless
note
.
system
return
if
note
.
system
project
=
note
.
project
target
=
note
.
noteable
author
=
note
.
author
...
...
@@ -102,7 +103,6 @@ class TaskService
create_task
(
project
,
target
,
author
,
user
,
Task
::
MENTIONED
,
note
)
end
end
end
# When update a note we should:
#
...
...
@@ -111,7 +111,8 @@ class TaskService
#
def
update_note
(
note
,
current_user
)
# Skip system notes, like status changes and cross-references
unless
note
.
system
return
if
note
.
system
project
=
note
.
project
target
=
note
.
noteable
author
=
current_user
...
...
@@ -126,7 +127,6 @@ class TaskService
end
end
end
end
private
...
...
@@ -159,10 +159,10 @@ class TaskService
end
def
pending_tasks
(
user
,
project
,
target
,
options
=
{})
options
.
reverse_merge
(
{
options
.
reverse_merge
(
project:
project
,
target:
target
}
)
)
user
.
tasks
.
pending
.
where
(
options
)
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