Skip to content

Commit

Permalink
Merge pull request #74 from robfletcher/master
Browse files Browse the repository at this point in the history
user-centric notifications for stale app ownership
  • Loading branch information
robfletcher committed Mar 3, 2016
2 parents f73292c + 9d50a96 commit 53dc118
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 47 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
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>
#foreach($event in $notification.additionalContext.events)
$event.email owns:
#foreach($application in $event.applications)
- $application.name in $application.accounts
#end

#end
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
The following applications are owned by ex-employees:
The following users are ex-employees but still own applications. We could not identify managers or team members to reassign to.

#foreach($event in $notification.additionalContext.events)
$application.owner.name<$application.owner.email> owns...
#foreach($application in $event.applications)
- $application.name in $application.accounts
#end

#foreach($application in $notification.additionalContext.outdated)
$application.name in $application.accounts owned by $application.owner.name<$application.owner.email>
- no suggested owner found for reassignment.
#end
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
The following applications are owned by ex-employees:
The following users are ex-employees but still own applications. We have identified possible managers or team members to reassign to.

#foreach($event in $notification.additionalContext.events)
$application.owner.name<$application.owner.email> owns...
#foreach($application in $event.applications)
- $application.name in $application.accounts
#end
Suggest reassigning to $application.suggestedOwner.name<$application.suggestedOwner.email>

#foreach($application in $notification.additionalContext.applications)
$application.name in $application.accounts owned by $application.owner.name<$application.owner.email>
- suggest reassigning to $application.suggestedOwner.name<$application.suggestedOwner.email>.
#end
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
The following applications are owned by unidentifiable users:
The following email addresses are not recognized employee or group addresses but own applications.

#foreach($event in $notification.additionalContext.events)
$event.email owns...
#foreach($application in $event.applications)
- $application.name in $application.accounts
#end

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

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 53dc118

Please sign in to comment.