1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

help and about settings pages

This commit is contained in:
Kyle Spearrin
2016-09-20 12:06:01 -04:00
parent 68b16ea565
commit 2fefdf8f6c
11 changed files with 109 additions and 2 deletions

View File

@@ -105,6 +105,22 @@
controller: 'toolsPasswordGeneratorController',
data: { authorize: true },
params: { animation: null, addState: null, editState: null }
})
.state('about', {
url: '/about',
templateUrl: 'app/settings/views/settingsAbout.html',
controller: 'settingsAboutController',
data: { authorize: true },
params: { animation: null }
})
.state('help', {
url: '/help',
templateUrl: 'app/settings/views/settingsHelp.html',
controller: 'settingsHelpController',
data: { authorize: true },
params: { animation: null }
});
})
.run(function ($rootScope, userService, loginService, tokenService, $state) {