1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00
budibase/packages/server/src/constants/index.js

116 lines
2.5 KiB
JavaScript
Raw Normal View History

const { BUILTIN_ROLE_IDS } = require("@budibase/auth/roles")
const { UserStatus } = require("@budibase/auth").constants
const { ObjectStoreBuckets } = require("@budibase/auth").objectStore
2020-11-26 04:03:19 +13:00
exports.LOGO_URL = "https://i.imgur.com/ycNeYTy.png"
2021-05-19 03:37:54 +12:00
exports.JobQueues = {
2021-05-19 08:03:26 +12:00
AUTOMATIONS: "automationQueue",
2021-05-19 03:37:54 +12:00
}
exports.FieldTypes = {
STRING: "string",
LONGFORM: "longform",
OPTIONS: "options",
NUMBER: "number",
BOOLEAN: "boolean",
DATETIME: "datetime",
ATTACHMENT: "attachment",
LINK: "link",
FORMULA: "formula",
AUTO: "auto",
}
2021-02-26 01:21:24 +13:00
exports.RelationshipTypes = {
ONE_TO_MANY: "one-to-many",
MANY_TO_ONE: "many-to-one",
2021-02-26 01:23:47 +13:00
MANY_TO_MANY: "many-to-many",
2021-02-26 01:21:24 +13:00
}
exports.AuthTypes = {
APP: "app",
BUILDER: "builder",
EXTERNAL: "external",
}
exports.USERS_TABLE_SCHEMA = {
2020-11-26 04:03:19 +13:00
_id: "ta_users",
type: "table",
views: {},
name: "Users",
// TODO: ADMIN PANEL - when implemented this doesn't need to be carried out
2020-11-26 04:03:19 +13:00
schema: {
2020-12-05 01:22:45 +13:00
email: {
type: exports.FieldTypes.STRING,
2020-11-26 04:03:19 +13:00
constraints: {
type: exports.FieldTypes.STRING,
2020-12-05 01:22:45 +13:00
email: true,
2020-11-26 04:03:19 +13:00
length: {
maximum: "",
},
presence: true,
},
2020-12-05 01:22:45 +13:00
fieldName: "email",
name: "email",
2020-11-26 04:03:19 +13:00
},
firstName: {
name: "firstName",
fieldName: "firstName",
type: exports.FieldTypes.STRING,
constraints: {
type: exports.FieldTypes.STRING,
presence: false,
},
},
lastName: {
name: "lastName",
fieldName: "lastName",
type: exports.FieldTypes.STRING,
constraints: {
type: exports.FieldTypes.STRING,
presence: false,
},
},
roleId: {
fieldName: "roleId",
name: "roleId",
type: exports.FieldTypes.OPTIONS,
2020-11-26 04:03:19 +13:00
constraints: {
type: exports.FieldTypes.STRING,
2020-11-26 04:03:19 +13:00
presence: false,
inclusion: Object.values(BUILTIN_ROLE_IDS),
2020-11-26 04:03:19 +13:00
},
},
status: {
fieldName: "status",
name: "status",
type: exports.FieldTypes.OPTIONS,
constraints: {
type: exports.FieldTypes.STRING,
presence: false,
inclusion: Object.values(UserStatus),
},
},
2020-11-26 04:03:19 +13:00
},
2020-12-05 01:22:45 +13:00
primaryDisplay: "email",
2020-11-26 04:03:19 +13:00
}
exports.AutoFieldSubTypes = {
CREATED_BY: "createdBy",
CREATED_AT: "createdAt",
UPDATED_BY: "updatedBy",
UPDATED_AT: "updatedAt",
AUTO_ID: "autoID",
}
2021-05-25 09:17:03 +12:00
exports.OBJ_STORE_DIRECTORY = "/prod-budi-app-assets/assets"
exports.BaseQueryVerbs = {
CREATE: "create",
READ: "read",
UPDATE: "update",
DELETE: "delete",
}
// pass through the list from the auth/core lib
exports.ObjectStoreBuckets = ObjectStoreBuckets