mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
41f75b5936
Fix potential Angular XSS issues GitOrigin-RevId: a18a609a25b29e910cb78e28a37398417cfe4842
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
div(ng-controller="GroupMembershipController")
|
|
each groupSubscription in memberGroupSubscriptions
|
|
- if (user._id+'' != groupSubscription.admin_id._id+'')
|
|
div
|
|
p
|
|
| You are a member of
|
|
|
|
|
+teamName(groupSubscription)
|
|
- if (groupSubscription.teamNotice && groupSubscription.teamNotice != '')
|
|
p
|
|
//- Team notice is sanitized in SubscriptionViewModelBuilder
|
|
em(ng-non-bindable) !{groupSubscription.teamNotice}
|
|
span
|
|
button.btn.btn-danger.text-capitalise(ng-click="removeSelfFromGroup('"+groupSubscription.admin_id._id+"')") #{translate("leave_group")}
|
|
hr
|
|
|
|
script(type='text/ng-template', id='LeaveGroupModalTemplate')
|
|
.modal-header
|
|
h3 #{translate("leave_group")}
|
|
.modal-body
|
|
p #{translate("sure_you_want_to_leave_group")}
|
|
.modal-footer
|
|
button.btn.btn-default(
|
|
ng-disabled="inflight"
|
|
ng-click="cancel()"
|
|
) #{translate("cancel")}
|
|
button.btn.btn-danger(
|
|
ng-disabled="state.inflight"
|
|
ng-click="confirmLeaveGroup()"
|
|
)
|
|
span(ng-hide="inflight") #{translate("leave_now")}
|
|
span(ng-show="inflight") #{translate("processing")}...
|