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
7cb12fcf791b
Commit
7cb12fcf
authored
Mar 26, 2015
by
Douwe Maan
Browse files
Fix EmailsOnPush.
parent
049f3dda20ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
7cb12fcf
...
...
@@ -31,6 +31,7 @@
- Replace commits calendar with faster contribution calendar that includes issues and merge requests
- Add inifinite scroll to user page activity
- Don't show commit comment button when user is not signed in.
- Fix EmailsOnPush.
v 7.9.0
- Send EmailsOnPush email when branch or tag is created or deleted.
...
...
app/workers/emails_on_push_worker.rb
View file @
7cb12fcf
class
EmailsOnPushWorker
include
Sidekiq
::
Worker
def
perform
(
project_id
,
recipients
,
push_data
,
send_from_committer_email:
false
,
disable_diffs:
false
)
def
perform
(
project_id
,
recipients
,
push_data
,
options
=
{})
options
.
symbolize_keys!
options
.
reverse_merge!
(
send_from_committer_email:
false
,
disable_diffs:
false
)
send_from_committer_email
=
options
[
:send_from_committer_email
]
disable_diffs
=
options
[
:disable_diffs
]
project
=
Project
.
find
(
project_id
)
before_sha
=
push_data
[
"before"
]
after_sha
=
push_data
[
"after"
]
...
...
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