Budibase is an open-source low-code platform for creating internal apps in minutes. Supports PostgreSQL, MySQL, MSSQL, MongoDB, Rest API, Docker, K8s 🚀
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Budibase Release Bot c3a7a9d122 v1.0.22 5 years ago
..
scripts fix tests 5 years ago
src Adding slash incase couch URL doesn't contain. 5 years ago
.gitignore groundwork for budibase auth lib 5 years ago
LICENSE License cleanup 5 years ago
README.md A general re-work of some parts of the auth lib, as well as moving roles/permissions around to make it possible to build an admin API which has role knowledge. 5 years ago
accounts.js Prevent root account users being re-created as internal budibase users 5 years ago
cache.js Updating the getAllApps function to use a cached version of the app metadata, rather than retrieving it individually everytime. Also invalidating the results everytime they are updated (at least in the important locations). 5 years ago
constants.js Adding concept of version to APIs. 5 years ago
db.js Revert "Merge pull request #2253 from Budibase/revert-2076-feature/multi-tenants" 5 years ago
deprovision.js Deprovision complete 5 years ago
package.json v1.0.22 5 years ago
permissions.js A general re-work of some parts of the auth lib, as well as moving roles/permissions around to make it possible to build an admin API which has role knowledge. 5 years ago
redis.js A general re-work of some parts of the auth lib, as well as moving roles/permissions around to make it possible to build an admin API which has role knowledge. 5 years ago
roles.js A general re-work of some parts of the auth lib, as well as moving roles/permissions around to make it possible to build an admin API which has role knowledge. 5 years ago
sessions.js Fixing session issues after testing a bit. 5 years ago
tenancy.js Revert "Merge pull request #2253 from Budibase/revert-2076-feature/multi-tenants" 5 years ago
yarn.lock Bump stringstream from 0.0.5 to 0.0.6 in /packages/auth 5 years ago

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/auth/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.