refactor: extract escapeRegex and validateTagSlugs server utils
Deduplicate tag validation and regex escaping into shared auto-imported utils. Add tag validation to wiki patch/batch-tag routes. Remove duplicate tags field from event schema.
This commit is contained in:
parent
f585fabf21
commit
a516f172fb
11 changed files with 33 additions and 31 deletions
|
|
@ -41,3 +41,8 @@ vi.stubGlobal('requireAuth', vi.fn())
|
|||
vi.stubGlobal('requireAdmin', vi.fn())
|
||||
vi.stubGlobal('validateBody', vi.fn(async (event) => readBody(event)))
|
||||
vi.stubGlobal('logActivity', vi.fn())
|
||||
vi.stubGlobal('validateTagSlugs', vi.fn())
|
||||
|
||||
// Real server/utils that are safe to use as-is in tests
|
||||
import { escapeRegex } from '../../server/utils/escapeRegex.js'
|
||||
vi.stubGlobal('escapeRegex', escapeRegex)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue