From 95f1f463e4aed2afcc249182f63650133a654a49 Mon Sep 17 00:00:00 2001 From: fflorent Date: Wed, 18 Dec 2024 10:32:50 +0100 Subject: [PATCH] SCIM: Remove unimplemented /Me endpoints Issue reported: https://github.com/scimmyjs/scimmy-routers/issues/27 --- api/scim/users.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/api/scim/users.yml b/api/scim/users.yml index f405f9a7c..1629eae80 100644 --- a/api/scim/users.yml +++ b/api/scim/users.yml @@ -302,31 +302,6 @@ paths: description: When SCIM is enabled, this endpoint is accessible by anyone authentified in Grist. operationId: getMe parameters: [] - put: - <<: *put-user - summary: Update information about oneself - description: | - When SCIM is enabled, this endpoint is accessible by anyone authentified in Grist. - - ⚠️ This operation override all the user's information. In order to pass only some properties to update, please use [PATCH](#tag/scim/operation/patchUserById) instead. - operationId: putMe - parameters: [] - patch: - <<: *patch-user - summary: Partially update information about oneself - description: When SCIM is enabled, this endpoint is accessible by anyone authentified in Grist. - operationId: patchMe - parameters: [] - delete: - <<: *delete-user - summary: Delete own account - description: | - When SCIM is enabled, this endpoint is accessible by anyone authentified in Grist. - - ⚠️ **This action cannot be undone, please be cautious when using this endpoint** ⚠️ - operationId: deleteMe - parameters: [] - components: