Merge pull request #1554 from h3poteto/fix/tag-following

Fix following to optional field in tags
This commit is contained in:
AkiraFukushima 2023-01-26 23:37:23 +09:00 committed by GitHub
commit db91b9022b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -5,6 +5,6 @@ namespace Entity {
name: string
url: string
history: Array<History> | null
following: boolean
following?: boolean
}
}

View file

@ -5,6 +5,6 @@ namespace MastodonEntity {
name: string
url: string
history: Array<History> | null
following: boolean
following?: boolean
}
}

View file

@ -592,7 +592,7 @@ export interface MegalodonInterface {
*/
getSuggestions(limit?: number): Promise<Response<Array<Entity.Account>>>
// ======================================
// accounts/tag
// accounts/tags
// ======================================
/**
* GET /api/v1/tags/:id

View file

@ -5,6 +5,6 @@ namespace PleromaEntity {
name: string
url: string
history: Array<History> | null
following: boolean
following?: boolean
}
}