Changes in / [f9983f5:7f1a891]
- Location:
- src/Clients/Angular/finki-chattery/src/app
- Files:
-
- 9 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Clients/Angular/finki-chattery/src/app/core/core.module.ts
rf9983f5 r7f1a891 14 14 import { reducers } from './state'; 15 15 import { TokenInterceptor } from './interceptors/token.interceptor'; 16 import { EffectsModule } from '@ngrx/effects';17 import { QuestionEffects } from './state/question-state/question.effects';18 16 19 17 @NgModule({ … … 35 33 maxAge: 25, 36 34 logOnly: !environment.production 37 }), 38 EffectsModule.forRoot([QuestionEffects]) 35 }) 39 36 ], 40 37 exports: [HttpClientModule, COMPONENTS] -
src/Clients/Angular/finki-chattery/src/app/core/state/index.ts
rf9983f5 r7f1a891 1 1 import { ActionReducerMap } from '@ngrx/store'; 2 import { QuestionState } from './question-state/question.state';3 import { reducer as questionReducer } from './question-state/question.reducers';4 2 5 export interface State { 6 question: QuestionState; 7 } 3 export interface State {} 8 4 9 export const reducers: ActionReducerMap<State, any> = { 10 question: questionReducer 11 }; 5 export const reducers: ActionReducerMap<State, any> = {}; -
src/Clients/Angular/finki-chattery/src/app/shared-app/models/index.ts
rf9983f5 r7f1a891 1 1 export * from './error.models'; 2 2 export * from './user.models'; 3 export * from './question-state-view-models.models';
Note:
See TracChangeset
for help on using the changeset viewer.