14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
const publicPaths = [
|
|
'/login',
|
|
'/register',
|
|
'/reset',
|
|
'/reset/password',
|
|
'/webhooks/success',
|
|
'/webhooks/github',
|
|
'/webhooks/github/install',
|
|
'/webhooks/gitlab'
|
|
];
|
|
|
|
export function isPublicPath(path: string): boolean {
|
|
return publicPaths.includes(path);
|
|
}
|