1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00
This commit is contained in:
Kyle Spearrin
2019-04-16 23:32:02 -04:00
parent 39c1384a98
commit 7252e7cad0
3 changed files with 7 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import { BaseResponse } from './baseResponse';
export class GlobalDomainResponse extends BaseResponse {
type: number;
domains: string[];
excluded: number[];
excluded: boolean;
constructor(response: any) {
super(response);

View File

@@ -15,6 +15,8 @@ const CanLaunchWhitelist = [
'irc://',
'vnc://',
'chrome://',
'iosapp://',
'androidapp://',
];
export class LoginUriView implements View {