You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users may want to change the structure of an existing view. We need to enable that from the backend.
Proposed solution
Users should be able to:
PATCH a set of columns to the columns field of /api/v0/views/<id>/ and entirely replace the columns in the view
POST a column to /api/v0/views/<id>/columns/ to add a new column to the view.
DELETE to /api/v0/views/<id>/columns/<id>/ to delete a column from a view.
The API should transform the updated list of columns into an appropriate query and update the view to use that query. The logic used should be similar to #465.
Problem
Users may want to change the structure of an existing view. We need to enable that from the backend.
Proposed solution
Users should be able to:
PATCH
a set of columns to thecolumns
field of/api/v0/views/<id>/
and entirely replace the columns in the viewPOST
a column to/api/v0/views/<id>/columns/
to add a new column to the view.DELETE
to/api/v0/views/<id>/columns/<id>/
to delete a column from a view.The API should transform the updated list of columns into an appropriate query and update the view to use that query. The logic used should be similar to #465.
Additional context
The text was updated successfully, but these errors were encountered: