jiuntian / IssueTrackerAssignment

0 stars 0 forks source link

Extra feature-Access Control List #18

Closed PUAJINGYI closed 3 years ago

PUAJINGYI commented 3 years ago

If we implement which type of user is allowed to perform particular actions, is it the access control list? For example: Only creator and assignee can change the status. We define the only assignee can set the status of the issue to "Resolved", "Reopened",while the creator only can set the status to "Closed" and "Reopened".

jiuntian commented 3 years ago

You should include also who can

On Sat, Jun 5, 2021, 11:53 PM PUAJINGYI @.***> wrote:

If we implement which type of user is allowed to perform particular actions, is it the access control list? For example: Only creator and assignee can change the status. We define the only assignee can set the status of the issue to "Resolved", "Reopened",while the creator only can set the status to "Closed" and "Reopened".

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jiuntian/IssueTrackerAssignment/issues/18, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADJ2E7Y7T3QKS3E5AHV7KCTTRJB6VANCNFSM46EWPKKQ .

PUAJINGYI commented 3 years ago

So is it mean I need to store this information together with the issue detail(id, title, description...)? and when I display issue detail for user, the user will not see the info like who can see, edit, create, delete but this kind of info will appear in another table of list which only admin can show it. Is it what you mean?

jiuntian commented 3 years ago

Ya you can do this way.

On Sun, 6 Jun 2021 at 08:56, PUAJINGYI @.***> wrote:

So is it mean I need to store this information together with the issue detail(id, title, description...)? and when I display issue detail for user, the user will not see the info like who can see, edit, create, delete but this kind of info will appear in another table of list which only admin can show it. Is it what you mean?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/jiuntian/IssueTrackerAssignment/issues/18#issuecomment-855318014, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADJ2E7Z65R5H2YVBDBPXH4LTRLBTBANCNFSM46EWPKKQ .

PUAJINGYI commented 3 years ago

ok,thank you demo