Skip to content

Commit

Permalink
Merge pull request #71 from robfletcher/master
Browse files Browse the repository at this point in the history
new email notification type
  • Loading branch information
robfletcher committed Mar 1, 2016
2 parents 9bcfb53 + 3fcc58d commit 41a424e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#if($notification.additionalContext.outdated.size() > 0)
The following applications are owned by ex-employees:

#foreach($application in $notification.additionalContext.outdated)
$application.name in $application.accounts owned by $application.owner.name<$application.owner.email>
#if($application.suggestedOwner)
- suggest reassigning to $application.suggestedOwner.name<$application.suggestedOwner.email>.
#else
- no suggested owner found for reassignment.
#end
#end

#end
#if($notification.additionalContext.unknown.size() > 0)
The following applications are owned by unidentifiable users:

#foreach($application in $notification.additionalContext.unknown)
$application.name in $application.accounts owned by <$application.owner.email>
#end

#end
#if($notification.additionalContext.multiple.size() > 0)
The owner email for the following applications matches multiple users:

#foreach($application in $notification.additionalContext.multiple)
$application.name in $application.accounts owned by <$application.owner.email>
#end

#end
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Report of issues with application owners

0 comments on commit 41a424e

Please sign in to comment.