setting appId on user object when creating the app instance
This commit is contained in:
parent
85ccd878ce
commit
37c47cc124
|
@ -18,7 +18,7 @@ const run = async opts => {
|
||||||
console.log(chalk.green(`Budibase app ${opts.name} created!`))
|
console.log(chalk.green(`Budibase app ${opts.name} created!`))
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(
|
console.error(
|
||||||
chalk.red("Error creating new app", JSON.stringify(error, { space: 2 }))
|
chalk.red("Error creating new app", error)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -52,8 +52,10 @@ const createAppInstance = async opts => {
|
||||||
const instanceController = require("@budibase/server/src/api/controllers/instance")
|
const instanceController = require("@budibase/server/src/api/controllers/instance")
|
||||||
const createInstCtx = {
|
const createInstCtx = {
|
||||||
params: {
|
params: {
|
||||||
clientId: process.env.CLIENT_ID,
|
clientId: process.env.CLIENT_ID
|
||||||
applicationId: opts.applicationId,
|
},
|
||||||
|
user: {
|
||||||
|
appId: opts.applicationId
|
||||||
},
|
},
|
||||||
request: {
|
request: {
|
||||||
body: { name: `dev-${process.env.CLIENT_ID}` },
|
body: { name: `dev-${process.env.CLIENT_ID}` },
|
||||||
|
|
Loading…
Reference in New Issue