diff options
author | 2024-10-05 19:14:53 +0200 | |
---|---|---|
committer | 2024-10-05 19:14:53 +0200 | |
commit | 18e2f69e85bf7101b9d26c72e7676e4cb0dac285 (patch) | |
tree | c4f82494a63ee57108547b214ecbcbb3db002691 /docs/api | |
parent | [chore] Change order of error checking after PostInbox (#3394) (diff) | |
download | gotosocial-18e2f69e85bf7101b9d26c72e7676e4cb0dac285.tar.xz |
[bugfix] Return 501 (not implemented) if user tries to schedule post (#3395)
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/swagger.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index c0dc6de89..9f0e91cd7 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -8947,7 +8947,7 @@ paths: Providing this parameter will cause ScheduledStatus to be returned instead of Status. Must be at least 5 minutes in the future. - This feature isn't implemented yet. + This feature isn't implemented yet; attemping to set it will return 501 Not Implemented. in: formData name: scheduled_at type: string @@ -9008,6 +9008,8 @@ paths: description: not acceptable "500": description: internal server error + "501": + description: scheduled_at was set, but this feature is not yet implemented security: - OAuth2 Bearer: - write:statuses |