Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
6408caa3ef05
Commit
6408caa3
authored
Jan 15, 2014
by
Dmitriy Zaporozhets
Browse files
Move repo rename email to notification service
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
03d7d56bf443
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/models/project.rb
View file @
6408caa3
...
...
@@ -270,9 +270,7 @@
end
def
send_move_instructions
team
.
members
.
each
do
|
user
|
Notify
.
delay
.
project_was_moved_email
(
self
.
id
,
user
.
id
)
end
NotificationService
.
new
.
project_was_moved
(
self
)
end
def
owner
...
...
app/services/notification_service.rb
View file @
6408caa3
...
...
@@ -157,6 +157,15 @@
mailer
.
group_access_granted_email
(
users_group
.
id
)
end
def
project_was_moved
(
project
)
recipients
=
project
.
team
.
members
recipients
=
reject_muted_users
(
recipients
,
project
)
recipients
.
each
do
|
recipient
|
mailer
.
project_was_moved_email
(
project
.
id
,
recipient
.
id
)
end
end
protected
# Get project users with WATCH notification level
...
...
spec/services/notification_service_spec.rb
View file @
6408caa3
...
...
@@ -233,6 +233,31 @@
end
end
describe
'Projects'
do
let
(
:project
)
{
create
:project
}
before
do
build_team
(
project
)
end
describe
:project_was_moved
do
it
do
should_email
(
@u_watcher
.
id
)
should_email
(
@u_participating
.
id
)
should_not_email
(
@u_disabled
.
id
)
notification
.
project_was_moved
(
project
)
end
def
should_email
(
user_id
)
Notify
.
should_receive
(
:project_was_moved_email
).
with
(
project
.
id
,
user_id
)
end
def
should_not_email
(
user_id
)
Notify
.
should_not_receive
(
:project_was_moved_email
).
with
(
project
.
id
,
user_id
)
end
end
end
def
build_team
(
project
)
@u_watcher
=
create
(
:user
,
notification_level:
Notification
::
N_WATCH
)
@u_participating
=
create
(
:user
,
notification_level:
Notification
::
N_PARTICIPATING
)
...
...
Write
Preview
Supports
Markdown
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