Skip to content

Commit

Permalink
feat(): move task to share module
Browse files Browse the repository at this point in the history
  • Loading branch information
develite98 committed Nov 3, 2023
1 parent 483426c commit 828d89b
Show file tree
Hide file tree
Showing 67 changed files with 40 additions and 1,188 deletions.
4 changes: 1 addition & 3 deletions apps/mix-cms/src/app/pages/portal/portal.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@ export const PortalRoutes: Routes = [
path: CMS_ROUTES.portal.task.path,
data: breadcrumbName('Task Management'),
loadComponent: () =>
import('./task-manage/task-manage.component').then(
(m) => m.TaskManageComponent
),
import('@mixcore/module/task').then((m) => m.TaskManageComponent),
},
{
path: CMS_ROUTES.portal.settings.path,
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

45 changes: 0 additions & 45 deletions apps/mix-cms/src/app/pages/portal/task-manage/store/task.store.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { MixInputComponent } from '@mixcore/ui/input';
import { MixSelectComponent } from '@mixcore/ui/select';
import { DialogRef, DialogService } from '@ngneat/dialog';
import { HotToastService } from '@ngneat/hot-toast';
import { UserInfoStore } from '../../../../../stores/user-info.store';
import { UserInfoStore } from '../../../../../../../../../libs/mix-share/src/stores/user-info.store';
import { UserStore } from '../../../../../stores/user.store';

@Component({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { MixApiFacadeService } from '@mixcore/share/api';
import { toastObserverProcessing } from '@mixcore/share/helper';
import { ModalService } from '@mixcore/ui/modal';
import { HotToastService } from '@ngneat/hot-toast';
import { UserInfoStore } from '../../../../../../../../libs/mix-share/src/stores/user-info.store';
import { UserStore } from '../../../../stores/user.store';
import { UserInfoStore } from '../../../../stores/user-info.store';

@Injectable()
export class UserService {
Expand Down
2 changes: 1 addition & 1 deletion apps/mix-cms/tsconfig.editor.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "./tsconfig.json",
"include": ["**/*.ts"],
"include": ["**/*.ts", "../../libs/mix-share/src/stores/user-info.store.ts"],
"compilerOptions": {
"types": ["jest", "node"]
}
Expand Down

This file was deleted.

Empty file.
Loading

1 comment on commit 828d89b

@vercel
Copy link

@vercel vercel bot commented on 828d89b Nov 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.