33 lines
943 B
TypeScript
33 lines
943 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { CommonModule, Location } from '@angular/common';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { BtnBackComponent } from '../../buttons/btn-back/btn-back.component';
|
|
import { Router } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-privacy-policy',
|
|
standalone: true,
|
|
imports: [TranslateModule, BtnBackComponent, CommonModule],
|
|
templateUrl: './privacy-policy.component.html',
|
|
styleUrl: './privacy-policy.component.scss',
|
|
})
|
|
export class PrivacyPolicyComponent implements OnInit {
|
|
isRouteLogin: boolean = false;
|
|
|
|
constructor(private location: Location, private router: Router) {}
|
|
|
|
ngOnInit(): void {
|
|
this.checkCurrentRoute();
|
|
}
|
|
|
|
backClicked() {
|
|
this.location.back();
|
|
}
|
|
|
|
checkCurrentRoute(): void {
|
|
const currentUrl = this.router.url;
|
|
if (currentUrl === '/login/privacy-policy') {
|
|
this.isRouteLogin = true;
|
|
}
|
|
}
|
|
}
|