MaveriX89
MaveriX89
Explore posts from servers
BABetter Auth
Created by Acro on 2/24/2025 in #help
Server API: No Get Active Organization?
@bekacru is there a way to get the active organization of the user without using getFullOrganization ? If not, it appears to me that there is a lot of information returned like all the members of said organization as part of that particular API. Is there a way to modify the full organization request to omit certain fields of the payload so that it's as lean as possible in the event we only want a subset of the organization info (such as only name and org id)?
9 replies
BABetter Auth
Created by MaveriX89 on 3/12/2025 in #help
Adding Members to Organization with Teams Enabled
Thank you for the PR!
18 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Excellent!
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
The cost of that would be that the addMember method would have to do a check along the lines of:
const parseRoles = (role: TypedRole | TypedRole[]) => {
if (Array.isArray(role)) { /* join roles using comma */ }
else /* role is a string like the existing signature supports */
const parseRoles = (role: TypedRole | TypedRole[]) => {
if (Array.isArray(role)) { /* join roles using comma */ }
else /* role is a string like the existing signature supports */
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
I think both can be supported since we just need to extend the current signature
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
This is what I'm thinking
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Would there be complaints from users for the breaking change on the signature?
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Perhaps not worth the cost of maintenance if the same outcome can be achieved using a typed array
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Yeah, I think supporting that in the API signature would be a headache
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Ah, gotcha
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Oh, I was thinking it would be a simple transition but I'm probably missing something in the equation. I thought the existing type can just be reused to express something like:
role: ExistingType | ExistingType[];
role: ExistingType | ExistingType[];
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
That way you have backwards compatibility and it won't be a breaking API change
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Or perhaps both? a single typed string or an array of them?
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Just need to type that sucker to be an array of those values instead 🙂
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Yeah, so the suspicion was correct then 👍
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
(This is all randomly generated fake data btw 😂 )
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
No description
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Let me give it a test
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
string would obviously allow for comma-delimited entry but won't be able to guarantee the values that the user enters will match the defined set of role values
54 replies
BABetter Auth
Created by MaveriX89 on 3/11/2025 in #help
Admin + Organization Plugin: Role Columns
Yeah, considering there is strict type-saftey in inferring the types through the config, I wonder if it might be better served to type the role value of that API call to be something like RoleSetValue[] instead of RoleSetValue or string
54 replies