frontend: Moves delete room dialog to rooms domain
Relocates the delete room dialog component to the rooms domain for better organization and separation of concerns. Updates imports and references to reflect the new location of the component.
This commit is contained in:
parent
6c730a6dbc
commit
56e025d23d
@ -2,16 +2,16 @@ import { ChangeDetectionStrategy, Component, Inject, inject } from '@angular/cor
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { MatButtonModule } from '@angular/material/button';
|
||||
import {
|
||||
MAT_DIALOG_DATA,
|
||||
MatDialogActions,
|
||||
MatDialogContent,
|
||||
MatDialogRef,
|
||||
MatDialogTitle
|
||||
MAT_DIALOG_DATA,
|
||||
MatDialogActions,
|
||||
MatDialogContent,
|
||||
MatDialogRef,
|
||||
MatDialogTitle
|
||||
} from '@angular/material/dialog';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import type { DeleteRoomDialogOptions } from '../../../models';
|
||||
import { MeetRoomDeletionPolicyWithMeeting, MeetRoomDeletionPolicyWithRecordings } from '@openvidu-meet/typings';
|
||||
import type { DeleteRoomDialogOptions } from '../../../../shared/models';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-delete-room-dialog',
|
||||
@ -1,3 +1,4 @@
|
||||
export * from './delete-room-dialog/delete-room-dialog.component';
|
||||
export * from './rooms-lists/rooms-lists.component';
|
||||
export * from './step-indicator/step-indicator.component';
|
||||
export * from './wizard-nav/wizard-nav.component';
|
||||
|
||||
@ -28,8 +28,8 @@ import { ILogger, LoggerService } from 'openvidu-components-angular';
|
||||
import { NavigationService } from '../../../../shared/services/navigation.service';
|
||||
import { NotificationService } from '../../../../shared/services/notification.service';
|
||||
|
||||
import { DeleteRoomDialogComponent } from '../../../../shared/components/dialogs/delete-room-dialog/delete-room-dialog.component';
|
||||
import { DeleteRoomDialogOptions } from '../../../../shared/models/notification.model';
|
||||
import { DeleteRoomDialogComponent } from '../../components/delete-room-dialog/delete-room-dialog.component';
|
||||
import {
|
||||
RoomsListsComponent,
|
||||
RoomTableAction,
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
export * from './dialogs/basic-dialog/dialog.component';
|
||||
export * from './dialogs/delete-room-dialog/delete-room-dialog.component';
|
||||
export * from './pro-feature-badge/pro-feature-badge.component';
|
||||
export * from './selectable-card/selectable-card.component';
|
||||
export * from './spinner/spinner.component';
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user