UNPKG

mc-core

Version:
18 lines (14 loc) 433 B
export default ['$scope', '$http', '$uibModalInstance', function($scope, $http, $uibModalInstance) { $scope.ok = () => { $http .post('/api/check', { project_id: $scope.$parent.$id, name: $scope.name }) .then(res => { console.log('create check response', res) $uibModalInstance.close(res.data.data) }) } $scope.cancel = () => $uibModalInstance.dismiss('cancel') }]