mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 19:50:05 +01:00
25 lines
474 B
JavaScript
25 lines
474 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.details')
|
|
.controller('DetailsController', DetailsController);
|
|
|
|
DetailsController.$inject = ['$scope'];
|
|
|
|
function DetailsController($scope) {
|
|
var vm = this;
|
|
|
|
vm.publicity = false;
|
|
vm.isProjectMember = false;
|
|
|
|
vm.togglePublicity = togglePublicity;
|
|
vm.target = 'repositories';
|
|
|
|
function togglePublicity(e) {
|
|
vm.publicity = e.publicity;
|
|
}
|
|
}
|
|
|
|
})(); |