mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-28 21:25:55 +01:00
22 lines
386 B
JavaScript
22 lines
386 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.details')
|
|
.controller('DetailsController', DetailsController);
|
|
|
|
function DetailsController() {
|
|
var vm = this;
|
|
|
|
vm.publicity = false;
|
|
vm.isProjectMember = false;
|
|
|
|
vm.togglePublicity = togglePublicity;
|
|
|
|
function togglePublicity(e) {
|
|
vm.publicity = e.publicity;
|
|
}
|
|
}
|
|
|
|
})(); |