Files
micro-frontend/ng-ttc-frontend/src/app/component/token-timer/token-timer.component.ts
x2Skyz 6669399b7e
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 6m5s
-เพิ่ม pkg jose ไว้ encrypt secret key
-jwt services/jwt.service.ts
-เพิ่ม  เวลา expire jwt token
2025-11-23 19:30:54 +07:00

21 lines
574 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { JwtService } from '../../services/jwt.service';
import { CommonModule } from '@angular/common';
@Component({
selector: 'app-token-timer',
standalone: false,
templateUrl: './token-timer.component.html',
styleUrls: ['./token-timer.component.css']
})
export class TokenTimerComponent implements OnInit {
countdown$: Observable<string | null>;
constructor(private jwtService: JwtService) {
this.countdown$ = this.jwtService.countdown$;
}
ngOnInit(): void {}
}