mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 13:55:51 +00:00
improve
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import { Routes, RouterModule } from '@angular/router';
|
||||||
|
|
||||||
|
import { ChatMessageDebuggingPage } from './chat-message-debugging.page';
|
||||||
|
|
||||||
|
const routes: Routes = [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: ChatMessageDebuggingPage
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [RouterModule.forChild(routes)],
|
||||||
|
exports: [RouterModule],
|
||||||
|
})
|
||||||
|
export class ChatMessageDebuggingPageRoutingModule {}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
|
||||||
|
import { IonicModule } from '@ionic/angular';
|
||||||
|
|
||||||
|
import { ChatMessageDebuggingPageRoutingModule } from './chat-message-debugging-routing.module';
|
||||||
|
|
||||||
|
import { ChatMessageDebuggingPage } from './chat-message-debugging.page';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [
|
||||||
|
CommonModule,
|
||||||
|
FormsModule,
|
||||||
|
IonicModule,
|
||||||
|
ChatMessageDebuggingPageRoutingModule
|
||||||
|
],
|
||||||
|
declarations: [ChatMessageDebuggingPage]
|
||||||
|
})
|
||||||
|
export class ChatMessageDebuggingPageModule {}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<ion-header>
|
||||||
|
<ion-toolbar>
|
||||||
|
<ion-title>chatMessageDebugging</ion-title>
|
||||||
|
</ion-toolbar>
|
||||||
|
</ion-header>
|
||||||
|
|
||||||
|
<ion-content>
|
||||||
|
|
||||||
|
</ion-content>
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||||
|
import { IonicModule } from '@ionic/angular';
|
||||||
|
|
||||||
|
import { ChatMessageDebuggingPage } from './chat-message-debugging.page';
|
||||||
|
|
||||||
|
describe('ChatMessageDebuggingPage', () => {
|
||||||
|
let component: ChatMessageDebuggingPage;
|
||||||
|
let fixture: ComponentFixture<ChatMessageDebuggingPage>;
|
||||||
|
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ ChatMessageDebuggingPage ],
|
||||||
|
imports: [IonicModule.forRoot()]
|
||||||
|
}).compileComponents();
|
||||||
|
|
||||||
|
fixture = TestBed.createComponent(ChatMessageDebuggingPage);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
}));
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
import { WsChatMethodsService} from 'src/app/services/chat/ws-chat-methods.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-chat-message-debugging',
|
||||||
|
templateUrl: './chat-message-debugging.page.html',
|
||||||
|
styleUrls: ['./chat-message-debugging.page.scss'],
|
||||||
|
})
|
||||||
|
export class ChatMessageDebuggingPage implements OnInit {
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
public wsChatMethodsService: WsChatMethodsService
|
||||||
|
) { }
|
||||||
|
|
||||||
|
ngOnInit() {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user