1
0
Fork 0
forked from gitea/nas

Add option to remove account from followers in web UI (#34488)

This commit is contained in:
Eugen Rochko 2025-04-18 09:23:34 +02:00 committed by GitHub
parent 64d94f9e57
commit bed614d44e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 74 additions and 1 deletions

View file

@ -18,3 +18,8 @@ export const apiFollowAccount = (
export const apiUnfollowAccount = (id: string) =>
apiRequestPost<ApiRelationshipJSON>(`v1/accounts/${id}/unfollow`);
export const apiRemoveAccountFromFollowers = (id: string) =>
apiRequestPost<ApiRelationshipJSON>(
`v1/accounts/${id}/remove_from_followers`,
);