Changeset f9983f5 for src/Clients/Angular/finki-chattery
- Timestamp:
- 10/14/21 19:18:18 (3 years ago)
- Branches:
- dev
- Children:
- 9885bee, dab7a9b
- Parents:
- 7f1a891 (diff), 6d639c9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src/Clients/Angular/finki-chattery/src/app
- Files:
-
- 9 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Clients/Angular/finki-chattery/src/app/core/core.module.ts
r7f1a891 rf9983f5 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'; 16 18 17 19 @NgModule({ … … 33 35 maxAge: 25, 34 36 logOnly: !environment.production 35 }) 37 }), 38 EffectsModule.forRoot([QuestionEffects]) 36 39 ], 37 40 exports: [HttpClientModule, COMPONENTS] -
src/Clients/Angular/finki-chattery/src/app/core/state/index.ts
r7f1a891 rf9983f5 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'; 2 4 3 export interface State {} 5 export interface State { 6 question: QuestionState; 7 } 4 8 5 export const reducers: ActionReducerMap<State, any> = {}; 9 export const reducers: ActionReducerMap<State, any> = { 10 question: questionReducer 11 }; -
src/Clients/Angular/finki-chattery/src/app/shared-app/models/index.ts
r7f1a891 rf9983f5 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.