Added missing request context for user bindings
This commit is contained in:
parent
3b68abf407
commit
523bb63455
|
@ -175,6 +175,9 @@ async function execute(ctx: any, opts = { rowsOnly: false }) {
|
||||||
parameters: enrichedParameters,
|
parameters: enrichedParameters,
|
||||||
transformer: query.transformer,
|
transformer: query.transformer,
|
||||||
queryId: ctx.params.queryId,
|
queryId: ctx.params.queryId,
|
||||||
|
ctx: {
|
||||||
|
user: ctx.user,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
const { rows, pagination, extra } = await quotas.addQuery(runFn)
|
const { rows, pagination, extra } = await quotas.addQuery(runFn)
|
||||||
|
|
Loading…
Reference in New Issue