Revert "Add notification to confirm unconfirmed emails"

This commit is contained in:
Hugh O'Brien 2018-09-19 12:28:39 +01:00 committed by GitHub
parent b377b89447
commit 8805447bb9
2 changed files with 0 additions and 31 deletions

View file

@ -82,21 +82,3 @@ span(ng-controller="NotificationsController").userNotifications
button(ng-click="dismiss(notification)").close.pull-right
span(aria-hidden="true") ×
span.sr-only #{translate("close")}
ul.list-unstyled.notifications-list(
ng-controller="EmailNotificationController",
ng-cloak
)
li.notification_entry(
ng-repeat="userEmail in userEmails",
ng-if="!userEmail.confirmedAt"
)
.row
.col-xs-12
.alert.alert-warning
.notification_inner
| Please confirm your email {{userEmail.email}} by clicking on the link in the confirmation email
a(
href,
ng-click="resendConfirmationEmail(userEmail)"
) (#{translate('resend_confirmation_email')})

View file

@ -53,16 +53,3 @@ define [
localStorage('overleaf_v1_notification_hidden_at', Date.now())
else
localStorage('overleaf_v1_notification_hidden_at', null)
App.controller "EmailNotificationController", ($scope, $http, UserAffiliationsDataService) ->
$scope.userEmails = []
_getUserEmails = () ->
UserAffiliationsDataService
.getUserEmails().then (emails) ->
$scope.userEmails = emails
_getUserEmails()
$scope.resendConfirmationEmail = (userEmail) ->
UserAffiliationsDataService
.resendConfirmationEmail userEmail.email