overleaf/services/web/frontend/js/ide/share/controllers/OwnershipTransferConfirmModalController.js
Alf Eaton 1be43911b4 Merge pull request #3942 from overleaf/prettier-trailing-comma
Set Prettier's "trailingComma" setting to "es5"

GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
2021-04-28 02:10:01 +00:00

35 lines
845 B
JavaScript

import App from '../../../base'
App.controller(
'OwnershipTransferConfirmModalController',
function ($scope, $window, $modalInstance, projectMembers) {
$scope.state = {
inflight: false,
error: false,
}
$scope.confirm = function () {
const userId = $scope.member._id
transferOwnership(userId)
}
$scope.cancel = function () {
$modalInstance.dismiss()
}
function transferOwnership(userId) {
$scope.state.inflight = true
$scope.state.error = false
projectMembers
.transferOwnership(userId)
.then(() => {
$scope.state.inflight = false
$scope.state.error = false
$window.location.reload()
})
.catch(() => {
$scope.state.inflight = false
$scope.state.error = true
})
}
}
)