How to use `organizationLimit` with function? Why it returns boolean?

While using the Organization and Admin Plugins I need to make sure that admin Users can be in as many orgs as owner while each other org role (admin and member) can only be without a single org. The organizationLimit seems to be the setting I'm looking for, but I don't understand the return signature, the docs: https://www.better-auth.com/docs/plugins/organization#options say either a number or a function that return a boolean? I can use the function to check against the user but I'd still need the function to return a number, either let's say 100 for admins/owners and only 1 for any other role. But I can only return boolean from the function? what for?
Organization | Better Auth
The organization plugin allows you to manage your organization's members and teams.
6 Replies
Ping
Ping4mo ago
I wonder if it was a mistype in the docs. Though it would mean it was miss-typed three times, which seems unlikely.
mihaaai
mihaaaiOP4mo ago
Typescript also complain about returning anything than a boolean, might be a mistype, but if so, it needs to be corrected also in the code not only docs
Ping
Ping4mo ago
Yeap.
Unknown User
Unknown User4mo ago
Message Not Public
Sign In & Join Server To View
bekacru
bekacru4mo ago
consider this option as a way to determine whether a user has reached their organization limit. you can either specify a fixed number or use the user object to check how many organizations they are allowed to have. then maybe you can also verify additional parameters if needed. Then, return true if they have hit the limit or false if they haven’t. I understand how this could be confusing, we’ll make the docs clearer.
Unknown User
Unknown User4mo ago
Message Not Public
Sign In & Join Server To View

Did you find this page helpful?