fix: remove unused roles variable, lint and format
All checks were successful
Build and Push Backend Image / build (push) Successful in 48s
Build and Push Frontend Image / build (push) Successful in 1m15s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 18:40:58 +01:00
parent 91951667e3
commit 85554453e7
5 changed files with 21 additions and 15 deletions

View File

@@ -1,7 +1,20 @@
import { builder } from "../builder";
import { ArticleType, ArticleListType, AdminArticleListType } from "../types/index";
import { articles, users } from "../../db/schema/index";
import { eq, and, lte, desc, asc, ilike, or, count, arrayContains, isNotNull, ne, type SQL } from "drizzle-orm";
import {
eq,
and,
lte,
desc,
asc,
ilike,
or,
count,
arrayContains,
isNotNull,
ne,
type SQL,
} from "drizzle-orm";
import { requireAdmin } from "../../lib/acl";
import type { DB } from "../../db/connection";