-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Closed
Description
AC:
- Add an option in the bottom side menu:
Edit space. - Only available if the user is
space manager(space permission),adminorspace admin(platform permissions) - Same dialog/view of creation can be displayed to edit, applying the same rules or space name:
- Space name cannot be empty
- Space name cannot exceed 255 characters
- Space name cannot contain the following characters: / \ . : ? * " > < |'
- For the quota: only are allowed to modify it the following roles:
adminandspace admin(platform permissions).Space managernot allowed. The permission needed:"Drives.ReadWriteProjectQuota.all"
Base request:
PATCH https://<server>/graph/v1.0/drives/<drive-id>
following the same lines as the creation
There is no information about error handling, so if any error would happen, it'd be enough showing a generic error message.
TASKS
- Research (if needed)
- Create branch feature/edit_space
- Development tasks
- Add a new option (
Edit space) in the bottom side menu for users with right permissions - Display a dialog to update the space
- Update the space with new values and refresh the spaces list
- Implement unit tests (if needed)
- Add a new option (
- Code review and apply changes requested
- Design test plan
- QA
- Merge branch feature/edit_space into master