2019-03-12 21:08:12 -04:00
|
|
|
import { Component } from "@angular/core";
|
2021-08-16 18:00:59 -04:00
|
|
|
import { NgbActiveModal } from "@ng-bootstrap/ng-bootstrap";
|
2019-03-12 21:08:12 -04:00
|
|
|
|
2021-08-16 18:00:59 -04:00
|
|
|
export interface LogoutConfirmationDialogContext {
|
2019-03-12 21:08:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
templateUrl: "./logout-confirmation.component.html",
|
|
|
|
styleUrls: ["./logout-confirmation.component.scss"],
|
|
|
|
})
|
2021-08-16 18:00:59 -04:00
|
|
|
export class AdminLogoutConfirmationDialogComponent {
|
2019-03-12 21:08:12 -04:00
|
|
|
|
2021-08-16 18:00:59 -04:00
|
|
|
constructor(public modal: NgbActiveModal) {
|
2019-07-11 00:17:16 -04:00
|
|
|
}
|
2019-03-12 21:08:12 -04:00
|
|
|
}
|