Update group notification for new group invite URL

This commit is contained in:
James Allen 2018-06-12 09:54:54 +01:00
parent f7532e5854
commit 1d7accabdd

View file

@ -26,7 +26,8 @@ span(ng-controller="NotificationsController").userNotifications
)
.row(ng-hide="notification.hide")
.col-xs-12
.alert.alert-info(ng-if="notification.templateKey == 'notification_project_invite'", ng-controller="ProjectInviteNotificationController")
div(ng-switch="notification.templateKey")
.alert.alert-info(ng-switch-when="notification_project_invite", ng-controller="ProjectInviteNotificationController")
div.notification_inner
.notification_body(ng-show="!notification.accepted")
| !{translate("notification_project_invite_message")}
@ -43,7 +44,17 @@ span(ng-controller="NotificationsController").userNotifications
button(ng-click="dismiss(notification)").close.pull-right
span(aria-hidden="true") ×
span.sr-only #{translate("close")}
.alert.alert-info(ng-if="notification.templateKey != 'notification_project_invite'")
.alert.alert-info(ng-switch-when="notification_group_invite")
div.notification_inner
.notification_body
| #{translate("invited_to_join_team")}: {{ notification.messageOpts.groupName }}
a.pull-right.btn.btn-sm.btn-info(href="/user/subscription/domain/join")
| #{translate("join_team")}
span().notification_close
button(ng-click="dismiss(notification)").close.pull-right
span(aria-hidden="true") ×
span.sr-only #{translate("close")}
.alert.alert-info(ng-switch-default)
div.notification_inner
span(ng-bind-html="notification.html").notification_body
span().notification_close