mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
Restructure frontend directories GitOrigin-RevId: 5a1224ca186f4809df45680a80d374c1c318d7bf
39 lines
854 B
JavaScript
39 lines
854 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
|
|
})
|
|
}
|
|
})
|
|
})
|