mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 08:36:34 +00:00
23 lines
565 B
TypeScript
23 lines
565 B
TypeScript
export default defineNuxtRouteMiddleware(async (to) => {
|
|
// avoid non-embeddable paths within an iframe
|
|
if (self !== top) {
|
|
// allow for shared base
|
|
if (to.path.startsWith('/base/')) {
|
|
return
|
|
}
|
|
|
|
// allow for shared views based on page layout
|
|
if (to.meta?.layout === 'shared-view') {
|
|
return
|
|
}
|
|
|
|
// allow for shared views based on pageType meta prop
|
|
if (to.meta?.pageType === 'shared-view') {
|
|
return
|
|
}
|
|
|
|
// throw for all other pages
|
|
throw createError({ statusCode: 403, message: 'Not allowed' })
|
|
}
|
|
})
|