diff options
author | 2024-10-12 10:02:26 +0200 | |
---|---|---|
committer | 2024-10-12 10:02:26 +0200 | |
commit | 95a316236e3651c27d995fcdc8093ae0d1f96125 (patch) | |
tree | 13669ae1942d5ce0309a14933104a793cfcd4071 /docs/api | |
parent | [chore] Don't cc Accept of likes to followers (#3417) (diff) | |
download | gotosocial-95a316236e3651c27d995fcdc8093ae0d1f96125.tar.xz |
[bugfix] Account.last_status_at is a date, not datetime (#3419)
* [bugfix] Account.last_status_at is a date, not datetime
Fix #3418
* update swagger
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/swagger.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index 9f0e91cd7..1a5dd1fc3 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -296,8 +296,8 @@ definitions: type: string x-go-name: ID last_status_at: - description: When the account's most recent status was posted (ISO 8601 Datetime). - example: "2021-07-30T09:20:25+00:00" + description: When the account's most recent status was posted (ISO 8601 Date). + example: "2021-07-30" type: string x-go-name: LastStatusAt locked: @@ -2301,8 +2301,8 @@ definitions: type: string x-go-name: ID last_status_at: - description: When the account's most recent status was posted (ISO 8601 Datetime). - example: "2021-07-30T09:20:25+00:00" + description: When the account's most recent status was posted (ISO 8601 Date). + example: "2021-07-30" type: string x-go-name: LastStatusAt locked: |