Skip to content

Commit 44656a3

Browse files
committed
🔥 suppression du module subscription
1 parent 2e5c313 commit 44656a3

15 files changed

+0
-294
lines changed

src/app/core/routes/app.routing.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,4 @@ export const routes: Routes = [
1414
import('@modules/dashboard/dashboard.module')
1515
.then(m => m.DashboardModule)
1616
},
17-
{
18-
path: 'plans',
19-
loadChildren: () =>
20-
import('@modules/subscription/subscription.module')
21-
.then(m => m.SubscriptionModule)
22-
}
2317
];

src/app/core/store/app.store.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@ import { Action, ActionReducerMap } from '@ngrx/store';
33

44
import { AuthState } from '@app/modules/authentication/interfaces/state.interface';
55
import { authFeatureKey, authReducer } from '@app/modules/authentication/store/auth.reducer';
6-
import { subscriptionFeatureKey, subscriptionReducer } from '@app/modules/subscription/store/subscription.reducer';
7-
import { SubscriptionState } from '@app/modules/subscription/interfaces/state.interface';
86

97
export interface AppState {
108
router: RouterState;
119
[authFeatureKey]: AuthState;
12-
[subscriptionFeatureKey]: SubscriptionState;
1310
}
1411

1512
export const ROOT_REDUCERS: ActionReducerMap<AppState, Action> = {
1613
router: routerReducer,
1714
[authFeatureKey]: authReducer,
18-
[subscriptionFeatureKey]: subscriptionReducer,
1915
};

src/app/modules/subscription/interfaces/plan.interfaces.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/app/modules/subscription/interfaces/state.interface.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/app/modules/subscription/pages/create-plan/create-plan.component.html

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/app/modules/subscription/pages/create-plan/create-plan.component.ts

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/app/modules/subscription/routes/subscription.routes.ts

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/app/modules/subscription/services/plan.service.ts

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/app/modules/subscription/store/plan.effects.ts

Lines changed: 0 additions & 44 deletions
This file was deleted.

src/app/modules/subscription/store/subscription.actions.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/app/modules/subscription/store/subscription.effects.ts

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/app/modules/subscription/store/subscription.reducer.ts

Lines changed: 0 additions & 50 deletions
This file was deleted.

src/app/modules/subscription/store/subscription.selectors.ts

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/app/modules/subscription/subscription.module.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/app/shared/interfaces/response.interface.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)