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
81375834
Commit
81375834
authored
Mar 23, 2017
by
http://jneen.net/
Committed by
Felipe Artur
Apr 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add the service desk mailer
parent
db0ffef8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
app/mailers/emails/ee/service_desk.rb
app/mailers/emails/ee/service_desk.rb
+35
-0
app/mailers/notify.rb
app/mailers/notify.rb
+2
-0
No files found.
app/mailers/emails/ee/service_desk.rb
0 → 100644
View file @
81375834
module
Emails
module
EE
module
ServiceDesk
def
service_desk_thank_you_email
(
issue_id
)
setup_service_desk_mail
(
issue_id
)
mail_new_thread
(
@issue
,
service_desk_options
(
@support_bot
.
id
))
end
def
service_desk_new_note_email
(
issue_id
,
note_id
)
@note
=
Note
.
find
(
note_id
)
setup_service_desk_mail
(
issue_id
)
mail_answer_thread
(
@issue
,
service_desk_options
(
@note
.
author_id
))
end
private
def
setup_service_desk_mail
(
issue_id
)
@issue
=
Issue
.
find
(
issue_id
)
@project
=
@issue
.
project
@support_bot
=
User
.
support_bot
@sent_notification
=
SentNotification
.
record
(
@issue
,
@support_bot
.
id
,
reply_key
)
end
def
service_desk_options
(
author_id
)
{
from:
sender
(
author_id
),
to:
@issue
.
service_desk_reply_to
,
subject:
"Re:
#{
@issue
.
title
}
(#
#{
@issue
.
iid
}
)"
}
end
end
end
end
app/mailers/notify.rb
View file @
81375834
...
...
@@ -11,6 +11,8 @@ class Notify < BaseMailer
include
Emails
::
Pipelines
include
Emails
::
Members
include
Emails
::
EE
::
ServiceDesk
helper
MergeRequestsHelper
helper
DiffHelper
helper
BlobHelper
...
...
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