mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
bc1b73d74e
Transform absolute paths in frontend to relative GitOrigin-RevId: c1914c0fd09d68984ba6c85a1f00aa3e6858d944
38 lines
863 B
JavaScript
38 lines
863 B
JavaScript
define(['../../../base'], App => {
|
|
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
|
|
})
|
|
}
|
|
})
|
|
})
|