1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

Removing appIds from tokens to reduce confusion.

This commit is contained in:
Michael Drury 2020-11-03 13:58:17 +00:00
parent a35b6a57f9
commit 27871c1bc0
2 changed files with 1 additions and 3 deletions

View file

@ -33,8 +33,7 @@ exports.authenticate = async ctx => {
const payload = { const payload = {
userId: dbUser._id, userId: dbUser._id,
accessLevelId: dbUser.accessLevelId, accessLevelId: dbUser.accessLevelId,
version: app.version, version: app.version
appId,
} }
// if in cloud add the user api key // if in cloud add the user api key
if (env.CLOUD) { if (env.CLOUD) {

View file

@ -10,7 +10,6 @@ module.exports = async (ctx, appId, version) => {
const builderUser = { const builderUser = {
userId: "BUILDER", userId: "BUILDER",
accessLevelId: BUILDER_LEVEL_ID, accessLevelId: BUILDER_LEVEL_ID,
appId,
version, version,
} }
if (env.BUDIBASE_API_KEY) { if (env.BUDIBASE_API_KEY) {