mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-16 16:16:43 +10:00
19 lines
553 B
Ruby
19 lines
553 B
Ruby
module Emails
|
|
module Projects
|
|
def project_access_granted_email(user_project_id)
|
|
@users_project = UsersProject.find user_project_id
|
|
@project = @users_project.project
|
|
mail(to: @users_project.user.email,
|
|
subject: subject("access to project was granted"))
|
|
end
|
|
|
|
|
|
def project_was_moved_email(user_project_id)
|
|
@users_project = UsersProject.find user_project_id
|
|
@project = @users_project.project
|
|
mail(to: @users_project.user.email,
|
|
subject: subject("project was moved"))
|
|
end
|
|
end
|
|
end
|