Fixing comment import
Some checks failed
Anatid Blog CI Workflow / test (./backend) (push) Failing after 27s
Anatid Blog CI Workflow / test (./frontend) (push) Successful in 29s
Anatid Blog CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/anatid-blog-backend, ./backend) (push) Has been skipped
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Has been skipped
Anatid Blog CI Workflow / deploy (push) Has been skipped

This commit is contained in:
Phill Pover 2025-03-29 09:01:20 +00:00
parent 379680565b
commit 8fa2a82a81

View File

@ -2,7 +2,7 @@ import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm'; import { InjectRepository } from '@nestjs/typeorm';
import { Repository } from 'typeorm'; import { Repository } from 'typeorm';
import { Post } from './post.entity'; import { Post } from './post.entity';
import { Comment } from './comment.entity'; import { Comment } from '../comment/comment.entity';
@Injectable() @Injectable()
export class PostService { export class PostService {