1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12: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 = {
userId: dbUser._id,
accessLevelId: dbUser.accessLevelId,
version: app.version,
appId,
version: app.version
}
// if in cloud add the user api key
if (env.CLOUD) {

View file

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