mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
19 lines
533 B
TypeScript
19 lines
533 B
TypeScript
import { Component } from "@angular/core";
|
|
import { ActivatedRoute } from "@angular/router";
|
|
|
|
import { ProviderService } from "jslib-common/abstractions/provider.service";
|
|
|
|
@Component({
|
|
selector: "provider-settings",
|
|
templateUrl: "settings.component.html",
|
|
})
|
|
export class SettingsComponent {
|
|
constructor(private route: ActivatedRoute, private providerService: ProviderService) {}
|
|
|
|
ngOnInit() {
|
|
this.route.parent.params.subscribe(async (params) => {
|
|
await this.providerService.get(params.providerId);
|
|
});
|
|
}
|
|
}
|