mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-06 07:58:14 +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) {
|
||
|
|
||
|
}
|
||
|
|
||
|
})();
|