kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 12 lines 318 B view raw
1import { eq } from "drizzle-orm"; 2import db from "../../database"; 3import { labelTable } from "../../database/schema"; 4 5function getLabelsByWorkspaceId(workspaceId: string) { 6 return db 7 .select() 8 .from(labelTable) 9 .where(eq(labelTable.workspaceId, workspaceId)); 10} 11 12export default getLabelsByWorkspaceId;