bitwarden-estensione-browser/src/app/organizations/vault.component.ts

20 lines
400 B
TypeScript
Raw Normal View History

2018-07-03 18:34:20 +02:00
import {
2018-07-03 21:11:58 +02:00
Component,
OnInit,
2018-07-03 18:34:20 +02:00
} from '@angular/core';
2018-07-03 21:11:58 +02:00
import { ActivatedRoute } from '@angular/router';
2018-07-03 18:34:20 +02:00
@Component({
selector: 'app-org-vault',
templateUrl: 'vault.component.html',
})
2018-07-03 21:11:58 +02:00
export class VaultComponent implements OnInit {
constructor(private route: ActivatedRoute) { }
2018-07-03 18:34:20 +02:00
2018-07-03 21:11:58 +02:00
ngOnInit() {
this.route.parent.params.subscribe(async (params) => {
});
}
2018-07-03 18:34:20 +02:00
}