3f357561d0
* Get tenantInfo in user fetch * Add account holder label in users table * Don't allow account holder to be selected in users table * Sort account holder to top of list * Only use account holder role in users table * lint * Remove joi validation from tenant-info endpoint * Remove dayPasses * Catch CouchDB 404 and return undefined * Don't allow account holder role to be changed UI * Don't offer delete option for tenant owner * Backend validation to ensure account holder role cannot be updated * Don't allow account holder role to be changed UI * Get tenantOwner in separate call * Pass data into SelectEditRenderer * Rename var to __selectable * setEnrichedUsers * Update pro reference * Only load tenantOwner once |
||
---|---|---|
.. | ||
__mocks__ | ||
scripts | ||
src | ||
tests | ||
.gitignore | ||
.npmignore | ||
LICENSE | ||
README.md | ||
jest.config.ts | ||
package.json | ||
tsconfig.build.json | ||
tsconfig.json |
README.md
Budibase Core backend library
This library contains core functionality, like auth and security features which are shared between backend services.
Note about top level JS files
For the purposes of being able to do say require("@budibase/backend-core/permissions")
we need to
specify the exports at the top-level of the module.
For these files they should be limited to a single require
of the file that should
be exported and then a single module.exports = ...
to export the file in
commonJS.