generar dialogo para contraseña de encuesta
This commit is contained in:
parent
b708f7e0c8
commit
778aa72837
|
@ -0,0 +1 @@
|
||||||
|
<p>encuesta-password-dialog works!</p>
|
|
@ -0,0 +1,24 @@
|
||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { EncuestaPasswordDialogComponent } from './encuesta-password-dialog.component';
|
||||||
|
|
||||||
|
describe('EncuestaPasswordDialogComponent', () => {
|
||||||
|
let component: EncuestaPasswordDialogComponent;
|
||||||
|
let fixture: ComponentFixture<EncuestaPasswordDialogComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
declarations: [EncuestaPasswordDialogComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(EncuestaPasswordDialogComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,12 @@
|
||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'jhi-encuesta-password-dialog',
|
||||||
|
templateUrl: './encuesta-password-dialog.component.html',
|
||||||
|
styleUrls: ['./encuesta-password-dialog.component.scss'],
|
||||||
|
})
|
||||||
|
export class EncuestaPasswordDialogComponent implements OnInit {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
|
@ -11,6 +11,7 @@ import { EncuestaDeleteQuestionDialogComponent } from './encuesta-delete-questio
|
||||||
import { EncuestaDeleteOptionDialogComponent } from './encuesta-delete-option-dialog/encuesta-delete-option-dialog.component';
|
import { EncuestaDeleteOptionDialogComponent } from './encuesta-delete-option-dialog/encuesta-delete-option-dialog.component';
|
||||||
import { EncuestaCompartirDialogComponent } from './encuesta-compartir-dialog/encuesta-compartir-dialog.component';
|
import { EncuestaCompartirDialogComponent } from './encuesta-compartir-dialog/encuesta-compartir-dialog.component';
|
||||||
import { EncuestaCompleteComponent } from './complete/complete.component';
|
import { EncuestaCompleteComponent } from './complete/complete.component';
|
||||||
|
import { EncuestaPasswordDialogComponent } from './encuesta-password-dialog/encuesta-password-dialog.component';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [SharedModule, EncuestaRoutingModule, FontAwesomeModule],
|
imports: [SharedModule, EncuestaRoutingModule, FontAwesomeModule],
|
||||||
|
@ -24,6 +25,7 @@ import { EncuestaCompleteComponent } from './complete/complete.component';
|
||||||
EncuestaDeleteOptionDialogComponent,
|
EncuestaDeleteOptionDialogComponent,
|
||||||
EncuestaCompartirDialogComponent,
|
EncuestaCompartirDialogComponent,
|
||||||
EncuestaCompleteComponent,
|
EncuestaCompleteComponent,
|
||||||
|
EncuestaPasswordDialogComponent,
|
||||||
],
|
],
|
||||||
entryComponents: [EncuestaDeleteDialogComponent],
|
entryComponents: [EncuestaDeleteDialogComponent],
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue