fix: bug in the sliders and blog module

This commit is contained in:
mahyargdz
2025-04-13 10:30:59 +03:30
parent cac2620fc6
commit 78f481871c
14 changed files with 219 additions and 10 deletions
@@ -0,0 +1,12 @@
import { Injectable } from "@nestjs/common";
import { InjectRepository } from "@nestjs/typeorm";
import { Repository } from "typeorm";
import { Slider } from "../entities/slider.entity";
@Injectable()
export class SlidersRepository extends Repository<Slider> {
constructor(@InjectRepository(Slider) repository: Repository<Slider>) {
super(repository.target, repository.manager, repository.queryRunner);
}
}