bitwarden-estensione-browser/src/popup/services/unauth-guard.service.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
274 B
TypeScript
Raw Normal View History

import { Injectable } from "@angular/core";
import { UnauthGuardService as BaseUnauthGuardService } from "jslib-angular/services/unauth-guard.service";
@Injectable()
export class UnauthGuardService extends BaseUnauthGuardService {
2021-06-08 07:49:03 +02:00
protected homepage = "tabs/current";
}