budibase/packages/server/src/middleware/appMigrations.ts

13 lines
269 B
TypeScript

import { UserCtx } from "@budibase/types"
import { checkMissingMigrations } from "../appMigrations"
export default async (ctx: UserCtx, next: any) => {
const { appId } = ctx
if (!appId) {
return next()
}
return checkMissingMigrations(ctx, next, appId)
}