mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 19:50:05 +01:00
15 lines
296 B
JavaScript
15 lines
296 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.user');
|
|
.controller('ChangePasswordController', ChangePasswordController);
|
|
|
|
ChangePassswordController.$inject = ['ChangePasswordService'];
|
|
|
|
function ChangePasswordController(ChangePasswordService) {
|
|
|
|
}
|
|
|
|
})(); |