hi
The claims are coming from jwt token. So jwt has to contain the claim.
so how the application configuration is maintained for user permissions? are those not stored as claims?
Yes i understand. but i have another case where i have an object i want to store it as claim but not keep it in jwt.
Thanks. How can we store values in claims but not include them in the jwt token like browserinfo?
When is the next released plan?
Any update on this?
No yet.this work is still in progress
So no support for React Native/ Expo in ABP for now since the current implementation is based on the now deprecated Expo SDK 49?
We've support to React Native only as a project template. Not the packages.
Expo SDK 49 is already deprecated by their own. Currently we've upgraded to 51 and we've changed template structure to TypeScript. After testing and fixing IOS problem We'll release new project template.
Can you pleas provide some update on the progress? Also if you could at least provide redux implementation with the upgraded template will help?
can you provide us docker file for hosting react-native web app in docker container.
No yet.this work is still in progress
So no support for React Native/ Expo in ABP for now since the current implementation is based on the now deprecated Expo SDK 49?
We've support to React Native only as a project template. Not the packages.
Expo SDK 49 is already deprecated by their own. Currently we've upgraded to 51 and we've changed template structure to TypeScript. After testing and fixing IOS problem We'll release new project template.
Can you pleas provide some update on the progress? Also if you could at least provide redux implementation with the upgraded template will help?
hi
You can create a new Entity/Table to store these
Branches
of a user.| Id | Roles | Foreign Key (userid) | | --- | ------------------- | -------------------- | | 1 | ['admin', 'user'] | 123123123 |
No i Was asking how to store it as cache so that we can use without db call.
hi
- You can query three times and combine the results. get all branches of current user, switch and query.
- You can add your EF Core query instead of using datafilter.
Can you suggest the best way to store the object similar to this : Branches : [{"Id":123, "Roles:['admin','user']},{"Id":113, "Roles:['subadmin','user']}]
hi
I have a use case where i want to add roles by member for each organization unit and not maintain the role by organization unit.
In this case, you can use the organization manager to add roles. which means adding code to do this. The UI doesn't have this feature
if a member is belonging to branch USA and Turkey but USA branch has permission to view the book list but Turkey branch does not have permission to view the book list how does that scenario being handled here if i do not want to switch between the branch and display book list data at once if i disable the filter?
You can check the permission first and get the branch that has permission. then switch to this branch in the code to query the data.
I get that. it becomes complicated in case i have 3 branch where in user have permission in 2 branches USA and turkey but not in the third branch let's say UK. Any suggestion to handle this?