-
Notifications
You must be signed in to change notification settings - Fork 10
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
Link collaborators with actual (dex)users if possible #363
Comments
Questions:
|
Collaborators are currently fetched in the following format: "collaborators": [
{
"id": 5,
"fullName": "Wilton Weimann",
"role": "District Tactics Liaison"
},
{
"id": 6,
"fullName": "Rosanna Mueller",
"role": "Dynamic Infrastructure Planner"
}
], |
A returned collaborator object will return a value 'userId' when it is claimed by a user. "collaborators": [
{
"id": 5,
"fullName": "Wilton Weimann",
"role": "District Tactics Liaison"
},
{
"id": 6,
"fullName": "Rosanna Mueller",
"role": "Dynamic Infrastructure Planner",
"userId": 23
}
], |
Functional Requirements
Use Cases
|
@Ruby77 Could you please take a look at the work we've done above? Thanks! |
Wow, good work guys! Seems like a good starting point for this large issue.
Let's schedule a meeting so we can discuss this and some other topics in more detail, don't you say? |
"collaborators": [
{
"id": 5,
"fullName": "Wilton Weimann",
"role": "District Tactics Liaison"
},
{
"id": 6,
"fullName": "Rosanna Mueller",
"role": "Dynamic Infrastructure Planner",
"linked": {
"userId": 23,
"status": "pending"
}
}
], |
If the user did not accept it yet, will the frontend render an icon or something to clarify that the user has been invited?
How will we implement this in the new wizard? Can we automize this process?
Will you guys use the notification system? Or do you have something else in mind?
Do you plan to create a software design for your implementation, might be a good idea, I suppose.
Maybe we can fine-tune the process some more for a selection of people? Maybe the data officer or the followers from the user can have some other permissions?
|
Is your feature request related to a problem? Please describe.
Collaborators are just names at this moment and are not interactive at all. Users want be able to click on these names and be directed to their dex portfolio or profile page.
Describe the solution you'd like
When creating a project, it should be possible to link it to an existing dex user. If the collaborator has no dex account it can be just a name like it is now.
The text was updated successfully, but these errors were encountered: