This repository has no description
0

Configure Feed

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

core / web / src / params / rawCommit.ts
271 B 6 lines
1import type { ParamMatcher } from "@sveltejs/kit"; 2import { parseRawCommit } from "$lib/api/repo"; 3 4// requiring the hash here means refs that are not hashes fall through to the 5// commit page 6export const match: ParamMatcher = (param) => parseRawCommit(param) !== null;