Skip to content

Commit

Permalink
fix: run backend lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszszczecina committed Dec 19, 2024
1 parent 8cd2aed commit 8d5783b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/api/src/chapter/chapter.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
updateChapterSchema,
showChapterSchema
} from "./schemas/chapter.schema";

import type { ShowChapterResponse } from "./schemas/chapter.schema";

@Controller("chapter")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { and, eq, gte, lte, sql } from "drizzle-orm";
import { DatabasePg, type UUIDType } from "src/common";
import { chapters, lessons, questionAnswerOptions, questions } from "src/storage/schema";

import type { UpdateChapterBody } from "../schemas/chapter.schema";
import type { PostgresJsDatabase } from "drizzle-orm/postgres-js";
import type { LessonItemWithContentSchema, QuestionSchema } from "src/lesson/lesson.schema";
import type * as schema from "src/storage/schema";
import { UpdateChapterBody } from "../schemas/chapter.schema";

@Injectable()
export class AdminChapterRepository {
Expand Down

0 comments on commit 8d5783b

Please sign in to comment.