Open kulmann opened 9 months ago
If the name
attribute wasn't required we could drop the as any
in https://github.com/owncloud/web/blob/eb6d68a9f73d4a5431ab03124284fd63318fb856/packages/web-pkg/src/composables/actions/spaces/useSpaceActionsRestore.ts#L31
The spec defines the
name
of adrive
asrequired
, see https://github.com/owncloud/libre-graph-api/blob/18cc51ae24b30aa25c141cb4bf48d342f99c88fb/api/openapi-spec/v1.0.yaml#L3274C7-L3274C15In order to patch a drive with
the corresponding
PATCH
request requires the drivename
to be provided in the request body, which doesn't make sense for that particular request.Can we make the
name
attribute of thedrive
optional, or does that lead to other issues?