feat: add recipient filter to documents search in admin panel

This commit is contained in:
Catalin Pit
2026-08-24 15:29:08 +03:00
parent 1de57a9e43
commit 2cc6007c82
4 changed files with 45 additions and 4 deletions
@@ -1,9 +1,9 @@
import { prisma } from '@documenso/prisma';
import { EnvelopeType } from '@prisma/client';
export const ADMIN_SEARCH_RESULTS_PER_TYPE = 5;
import { MAX_POSTGRES_INT } from '../../constants/database';
const MAX_POSTGRES_INT = 2147483647;
export const ADMIN_SEARCH_RESULTS_PER_TYPE = 5;
const GROUP_ORDER = ['document', 'user', 'organisation', 'team', 'recipient', 'subscription'] as const;