1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

organization signup

This commit is contained in:
Kyle Spearrin
2017-03-03 00:07:31 -05:00
parent 27495d5055
commit 880be03211
6 changed files with 59 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
angular
.module('bit.settings')
.controller('settingsController', function ($scope, $uibModal, apiService, toastr, authService) {
.controller('settingsController', function ($scope, $state, $uibModal, apiService, toastr, authService) {
$scope.model = {
profile: {},
twoFactorEnabled: false,
@@ -70,6 +70,10 @@
});
};
$scope.viewOrganization = function (id) {
$state.go('backend.org.dashboard');
};
$scope.twoFactor = function () {
var twoFactorModal = $uibModal.open({
animation: true,