Skip to content
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

Combine read and write access in the workflow editor #3177

Closed
matthias-ronge opened this issue Feb 13, 2020 · 2 comments
Closed

Combine read and write access in the workflow editor #3177

matthias-ronge opened this issue Feb 13, 2020 · 2 comments

Comments

@matthias-ronge
Copy link
Collaborator

In the workflow editor, read and write access can be configured independently for the user in one workflow step. This is incorrect because

  • either no access is granted,
  • or read-only access
  • or read-write access.

The user interface must be adjusted here to reflect this (e.g. 3-fold drop-down).

@matthias-ronge
Copy link
Collaborator Author

This also affects the data model, where these are two different boolean values, but should be enum:

    @Column(name = "typeImagesRead")
    private boolean typeImagesRead = false;

    @Column(name = "typeImagesWrite")
    private boolean typeImagesWrite = false;

@matthias-ronge
Copy link
Collaborator Author

The two tasks are separately described in #4448 and #4449.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant