2020-11-24 15:04:14 +01:00
|
|
|
export const TableNames = {
|
|
|
|
USERS: "ta_users",
|
|
|
|
}
|
|
|
|
|
|
|
|
// fields on the user table that cannot be edited
|
|
|
|
export const UNEDITABLE_USER_FIELDS = ["username", "password", "accessLevelId"]
|
|
|
|
|
2020-11-25 18:56:09 +01:00
|
|
|
export const DEFAULT_LAYOUTS = {
|
2020-02-03 10:24:25 +01:00
|
|
|
main: {
|
2020-11-04 18:09:45 +01:00
|
|
|
props: {
|
|
|
|
_component: "@budibase/standard-components/container",
|
2019-07-25 08:31:54 +02:00
|
|
|
},
|
2020-02-03 10:24:25 +01:00
|
|
|
},
|
|
|
|
unauthenticated: {
|
2020-11-04 18:09:45 +01:00
|
|
|
props: {
|
|
|
|
_component: "@budibase/standard-components/container",
|
2019-07-25 08:31:54 +02:00
|
|
|
},
|
2020-02-03 10:24:25 +01:00
|
|
|
},
|
|
|
|
componentLibraries: [],
|
|
|
|
stylesheets: [],
|
2020-05-02 16:29:10 +02:00
|
|
|
}
|