mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 00:21:02 +00:00
Explicitly set the user default email for the delete account modal controller.
This commit is contained in:
parent
9d3e649710
commit
47c51257bb
1 changed files with 13 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
define [
|
||||
"base"
|
||||
], (App) ->
|
||||
App.controller "AccountSettingsController", ["$scope", "$http", "$modal", "event_tracking", ($scope, $http, $modal, event_tracking) ->
|
||||
App.controller "AccountSettingsController", ["$scope", "$http", "$modal", "event_tracking", "UserAffiliationsDataService", ($scope, $http, $modal, event_tracking, UserAffiliationsDataService) ->
|
||||
$scope.subscribed = true
|
||||
|
||||
$scope.unsubscribe = () ->
|
||||
|
@ -21,8 +21,15 @@ define [
|
|||
$scope.deleteAccount = () ->
|
||||
modalInstance = $modal.open(
|
||||
templateUrl: "deleteAccountModalTemplate"
|
||||
controller: "DeleteAccountModalController",
|
||||
scope: $scope
|
||||
controller: "DeleteAccountModalController"
|
||||
resolve:
|
||||
userDefaultEmail: () ->
|
||||
UserAffiliationsDataService
|
||||
.getUserEmails()
|
||||
.then (userEmails) ->
|
||||
defaultEmailDetails = _.find userEmails, (userEmail) -> userEmail.default
|
||||
return defaultEmailDetails?.email or null
|
||||
.catch () -> null
|
||||
)
|
||||
|
||||
$scope.upgradeIntegration = (service) ->
|
||||
|
@ -30,8 +37,8 @@ define [
|
|||
]
|
||||
|
||||
App.controller "DeleteAccountModalController", [
|
||||
"$scope", "$modalInstance", "$timeout", "$http",
|
||||
($scope, $modalInstance, $timeout, $http) ->
|
||||
"$scope", "$modalInstance", "$timeout", "$http", "userDefaultEmail",
|
||||
($scope, $modalInstance, $timeout, $http, userDefaultEmail) ->
|
||||
$scope.state =
|
||||
isValid : false
|
||||
deleteText: ""
|
||||
|
@ -46,7 +53,7 @@ define [
|
|||
, 700
|
||||
|
||||
$scope.checkValidation = ->
|
||||
$scope.state.isValid = $scope.state.deleteText == $scope.email and $scope.state.password.length > 0
|
||||
$scope.state.isValid = userDefaultEmail? and $scope.state.deleteText == userDefaultEmail and $scope.state.password.length > 0
|
||||
|
||||
$scope.delete = () ->
|
||||
$scope.state.inflight = true
|
||||
|
|
Loading…
Reference in a new issue