1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 05:43:16 +00:00

org export/import

This commit is contained in:
Kyle Spearrin
2017-09-06 09:05:53 -04:00
parent ff9030e7af
commit aaa91e50b7
10 changed files with 345 additions and 3 deletions

View File

@@ -28,6 +28,22 @@
}).$promise;
};
$scope.import = function () {
$uibModal.open({
animation: true,
templateUrl: 'app/tools/views/toolsImport.html',
controller: 'organizationSettingsImportController'
});
};
$scope.export = function () {
$uibModal.open({
animation: true,
templateUrl: 'app/tools/views/toolsExport.html',
controller: 'organizationSettingsExportController'
});
};
$scope.delete = function () {
$uibModal.open({
animation: true,