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
fe4d32ad
Commit
fe4d32ad
authored
Jul 28, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't resend admin email to everyone if one delivery fails
parent
73a87802
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGELOG-EE
CHANGELOG-EE
+2
-1
app/workers/admin_emails_worker.rb
app/workers/admin_emails_worker.rb
+1
-1
No files found.
CHANGELOG-EE
View file @
fe4d32ad
v 7.13.2
- Fix group web hook
- Don't resend admin email to everyone if one delivery fails
v 7.13.1
- Merge community edition changes for version 7.13.1
...
...
@@ -180,4 +181,4 @@ v 6.2.0
- Use omniauth-ldap nickname attribute as GitLab username
- Improve group sharing UI for installation with many groups
- Fix empty LDAP group raises exception
- Respect LDAP user filter for git access
\ No newline at end of file
- Respect LDAP user filter for git access
app/workers/admin_emails_worker.rb
View file @
fe4d32ad
...
...
@@ -3,7 +3,7 @@ class AdminEmailsWorker
def
perform
(
recipient_id
,
subject
,
body
)
recipient_list
(
recipient_id
).
pluck
(
:id
).
each
do
|
user_id
|
Notify
.
send_admin_notification
(
user_id
,
subject
,
body
).
deliver
Notify
.
delay
.
send_admin_notification
(
user_id
,
subject
,
body
)
end
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