diff --git a/src/addons/mod/forum/components/components.module.ts b/src/addons/mod/forum/components/components.module.ts index 45603fbcc..17a5497d1 100644 --- a/src/addons/mod/forum/components/components.module.ts +++ b/src/addons/mod/forum/components/components.module.ts @@ -14,23 +14,28 @@ import { NgModule } from '@angular/core'; -import { CoreSharedModule } from '@/core/shared.module'; import { CoreCourseComponentsModule } from '@features/course/components/components.module'; +import { CoreEditorComponentsModule } from '@features/editor/components/components.module'; +import { CoreSharedModule } from '@/core/shared.module'; import { CoreTagComponentsModule } from '@features/tag/components/components.module'; import { AddonModForumIndexComponent } from './index/index'; +import { AddonModForumPostComponent } from './post/post'; @NgModule({ declarations: [ AddonModForumIndexComponent, + AddonModForumPostComponent, ], imports: [ CoreSharedModule, CoreCourseComponentsModule, CoreTagComponentsModule, + CoreEditorComponentsModule, ], exports: [ AddonModForumIndexComponent, + AddonModForumPostComponent, ], }) export class AddonModForumComponentsModule {} diff --git a/src/addons/mod/forum/components/post/post.html b/src/addons/mod/forum/components/post/post.html new file mode 100644 index 000000000..1ac11c4df --- /dev/null +++ b/src/addons/mod/forum/components/post/post.html @@ -0,0 +1,136 @@ +