mirror of
https://github.com/nextcloud/passman.git
synced 2025-12-19 06:30:01 +08:00
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc function
|
|
* @name passmanApp.controller:MainCtrl
|
|
* @description
|
|
* # MainCtrl
|
|
* Controller of the passmanApp
|
|
*/
|
|
angular.module('passmanApp')
|
|
.controller('MainCtrl', ['$scope', 'VaultService', function ($scope, VaultService) {
|
|
$scope.selectedVault = false;
|
|
}]);
|