coolify/src/lib/settings.ts

15 lines
266 B
TypeScript
Raw Normal View History

2022-04-02 14:15:00 +00:00
const publicPaths = [
2022-02-10 14:47:44 +00:00
'/login',
2022-02-24 08:32:34 +00:00
'/register',
2022-02-18 20:37:40 +00:00
'/reset',
'/reset/password',
2022-02-10 14:47:44 +00:00
'/webhooks/success',
'/webhooks/github',
'/webhooks/github/install',
'/webhooks/gitlab'
];
2022-04-02 14:15:00 +00:00
export function isPublicPath(path: string): boolean {
return publicPaths.includes(path);
}