1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-04 05:08:06 +02:00

fido app id

This commit is contained in:
Kyle Spearrin 2017-06-27 12:26:53 -04:00
parent 9f1c445214
commit 9b3ca76934
5 changed files with 29 additions and 5 deletions

View File

@ -325,7 +325,8 @@ gulp.task('dist:move', function () {
paths.webroot + '**/images/**/*',
paths.webroot + 'index.html',
paths.webroot + 'u2f-connector.html',
paths.webroot + 'favicon.ico'
paths.webroot + 'favicon.ico',
paths.webroot + 'app-id.fidou2f'
],
dest: paths.dist
}
@ -440,6 +441,14 @@ gulp.task('deploy-preview', ['dist'], function () {
gulp.task('serve', function () {
connect.server({
port: 4001,
root: ['src']
root: ['src'],
middleware: function (connect, opt) {
return [function (req, res, next) {
if (req.originalUrl.indexOf('app-id.fidou2f') > -1) {
res.setHeader('Content-Type', 'application/fido.trusted-apps+json');
}
next();
}];
}
});
});

15
src/app-id.fidou2f Normal file
View File

@ -0,0 +1,15 @@
{
"trustedFacets": [
{
"version": {
"major": 1,
"minor": 0
},
"ids": [
"https://localhost:4001",
"ios:bundle-id:com.8bit.bitwarden",
"android:apk-key-hash:585215fd5153209a7e246f53286035838a0be227"
]
}
]
}

View File

@ -149,7 +149,7 @@
web browser.
</p>
Please use a supported web browser (such as Chrome) and/or add additional providers that are better supported
across web browsers (such as an Authenticator App).
across web browsers (such as an authenticator app).
</div>
<hr />

View File

@ -1,2 +1,2 @@
angular.module("bit")
.constant("appSettings", {"apiUri":"https://api.bitwarden.com","identityUri":"https://identity.bitwarden.com","stripeKey":"pk_live_bpN0P37nMxrMQkcaHXtAybJk","version":"1.13.0","environment":"Production"});
.constant("appSettings", {"apiUri":"https://localhost:44377","identityUri":"https://localhost:44392","stripeKey":"pk_test_KPoCfZXu7mznb9uSCPZ2JpTD","version":"1.13.0","environment":"Development"});

View File

@ -25,7 +25,7 @@
};
$scope.readDevice = function () {
if (closed) {
if (closed || $scope.enabled) {
return;
}