mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-03 09:13:50 -05:00
1ebc8a79cb
Upgrade Prettier to v2 GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
35 lines
844 B
JavaScript
35 lines
844 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
|
|
})
|
|
}
|
|
}
|
|
)
|