Changes in / [f9983f5:7f1a891]


Ignore:
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  
    1414import { reducers } from './state';
    1515import { TokenInterceptor } from './interceptors/token.interceptor';
    16 import { EffectsModule } from '@ngrx/effects';
    17 import { QuestionEffects } from './state/question-state/question.effects';
    1816
    1917@NgModule({
     
    3533      maxAge: 25,
    3634      logOnly: !environment.production
    37     }),
    38     EffectsModule.forRoot([QuestionEffects])
     35    })
    3936  ],
    4037  exports: [HttpClientModule, COMPONENTS]
  • src/Clients/Angular/finki-chattery/src/app/core/state/index.ts

    rf9983f5 r7f1a891  
    11import { ActionReducerMap } from '@ngrx/store';
    2 import { QuestionState } from './question-state/question.state';
    3 import { reducer as questionReducer } from './question-state/question.reducers';
    42
    5 export interface State {
    6   question: QuestionState;
    7 }
     3export interface State {}
    84
    9 export const reducers: ActionReducerMap<State, any> = {
    10   question: questionReducer
    11 };
     5export const reducers: ActionReducerMap<State, any> = {};
  • src/Clients/Angular/finki-chattery/src/app/shared-app/models/index.ts

    rf9983f5 r7f1a891  
    11export * from './error.models';
    22export * from './user.models';
    3 export * from './question-state-view-models.models';
Note: See TracChangeset for help on using the changeset viewer.