Skip to content

Commit cf5b03b

Browse files
authored
Merge pull request #41 from sourcefuse/saas-ui-4
fix(saas-ui):change in design and structure of application
2 parents 2ed4ada + 6bb58f2 commit cf5b03b

File tree

75 files changed

+104
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+104
-100
lines changed

projects/saas-ui/src/app/main/commands/add-plan.command.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {PostAPICommand, ApiService, IAdapter} from '@project-lib/core/api';
22
import {IAnyObject} from '@project-lib/core/i-any-object';
3-
import {Plan} from '../../on-boarding/models';
4-
3+
import {Plan} from '../../shared/models';
54
export class AddPlanCommand<T> extends PostAPICommand<Plan> {
65
parameters: any;
76

projects/saas-ui/src/app/main/lead-list/commands/add-tenant.command.ts renamed to projects/saas-ui/src/app/main/commands/add-tenant.command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {ApiService, IAdapter, PostAPICommand} from '@project-lib/core/api';
22

33
import {IAnyObject} from '@project-lib/core/i-any-object';
4-
import {Tenant} from '../../../on-boarding/models';
4+
import {Tenant} from '../../shared/models';
55

66
export class AddTenantCommand<T> extends PostAPICommand<T> {
77
parameters: {

projects/saas-ui/src/app/main/lead-list/commands/edit-tenant.command.ts renamed to projects/saas-ui/src/app/main/commands/edit-tenant.command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {ApiService, IAdapter, PatchAPICommand} from '@project-lib/core/api';
22

33
import {IAnyObject} from '@project-lib/core/i-any-object';
4-
import {Tenant} from '../../model/tenant.model';
4+
import {Tenant} from '../../shared/models/tenant.model';
55

66
export class EditTenantCommand<T> extends PatchAPICommand<T> {
77
data: Tenant;

projects/saas-ui/src/app/main/commands/get-plan-by-id.command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {IApiService, IAdapter, GetAPICommand} from '@project-lib/core/api';
33
import {Inject} from '@angular/core';
44
import {APP_CONFIG} from '@project-lib/app-config';
55
import {IAnyObject} from '@project-lib/core/i-any-object';
6-
import {Plan} from '../../on-boarding/models';
6+
import {Plan} from '../../shared/models';
77
export class GetPlanByIdCommand<T> extends GetAPICommand<Plan> {
88
parameters: {};
99
constructor(

projects/saas-ui/src/app/main/commands/get-plan.command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Observable} from 'rxjs';
33
import {Inject} from '@angular/core';
44
import {APP_CONFIG} from '@project-lib/app-config';
55
import {IAnyObject} from '@project-lib/core/i-any-object';
6-
import {Plan} from '../../on-boarding/models';
6+
import {Plan} from '../../shared/models';
77

88
export class GetPlanCommand<T> extends GetAPICommand<Plan[]> {
99
constructor(
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export * from './add-tenant.command';
2+
export * from './delete-tenant.command';
3+
export * from './edit-tenant.command';
4+
export * from './get-tenant-by-id.command';
5+
export * from './get-tenant-lead.command';
6+
export * from './add-plan.command';
7+
export * from './delete-plan.command';
8+
export * from './edit-plan.command';
9+
export * from './get-billing-cycles-command';
10+
export * from './get-billing.command';
11+
export * from './get-currency-command';
12+
export * from './get-plan-by-id.command';
13+
export * from './get-plan.command';

0 commit comments

Comments
 (0)