-
-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API: Display membership status while fetching workspace members #406
Comments
/attempt |
Assigned the issue to @lakshay-saini-au8! |
@rajdip-b if possible can you share what will be the expected response |
is it like `{ ` |
Hey @lakshay-saini-au8! Sorry about the late reply, must have overlooked your comments. We just want something like this:
|
@lakshay-saini-au8 any updates on this yet? |
Hi @rajdip-b I would like to work on this issue as I think this is pending since more then 12 weeks, |
Sure, do go ahead! |
Hi @rajdip-b , I hope you're doing well. I've been working on setting up the project according to the guidelines, but I've encountered a problem that's been quite bothersome. I've followed the recommendations regarding PostgreSQL issues, and while I'm using WSL, which has been consuming a lot of memory, I’m managing that. However, I would really appreciate your help in resolving the issue shown below so I can move forward: Thank you! |
Hey, can you please open up a github discussion for this issue? I feel that a lot of people will benefit from that. We are facing this issue quite often. |
@rajdip-b I have opened a discussion on the same, |
Hi there! I’m having trouble with the login process, and the documentation isn’t very clear about which modules to run. Could you guide me on how to run the project in full-stack mode? The backend is up and running, but I’m not sure where to find the UI or which directory to check. Thanks! @rajdip-b |
The UI is still under works. The designs are incomplete. All of the api dev is currently being done using postman. So it's pointless in running the UI since it can only do so much. I recommend you to go through the postman api docs. You can find the link in readme. |
@rothardo any luck? |
@rajdip-b yes, will raise pr soon |
Looking forward to it! |
Hey @rajdip-b I was caught up in some important work, I will raise a PR on Monday mostly for this one |
Hey, @rajdip-b I was trying to import the collections and this is what the error was and also is this causing the problem? |
I really don't think that this has got anything to do with our codebase. Also, never faced this error before. If you have followed the steps from our docs and you are facing this, I would suggest you to raise a ticket with Bruno. Those folks are really helpful :D |
Description
When we hit the
/api/workspace/{workspaceId}/members
endpoint to fetch all the members of a workspace, we also want to get the membership status of the member, i.e, if they have accepted the invitation or not.Currently, we just get the
id
,user
and theroles
they have.Solution
We would want the return type to also include a
active
field that will betrue
if the user has accepted the invitation,false
otherwise.keyshade/apps/api/src/workspace/service/workspace.service.ts
Lines 453 to 517 in fedc43b
keyshade/apps/api/src/prisma/schema.prisma
Lines 330 to 340 in fedc43b
The text was updated successfully, but these errors were encountered: