fixup! Merge remote-tracking branch 'upstream/develop' into mastoapi/actions

This commit is contained in:
Henry Jameson 2019-03-25 21:12:54 +02:00
parent 0ffd43954e
commit 82f077feb9
1 changed files with 0 additions and 4 deletions

View File

@ -33,10 +33,6 @@ const MASTODON_UNRETWEET_URL = id => `/api/v1/statuses/${id}/unreblog`
const MASTODON_DELETE_URL = id => `/api/v1/statuses/${id}`
const MASTODON_FOLLOW_URL = id => `/api/v1/accounts/${id}/follow`
const MASTODON_UNFOLLOW_URL = id => `/api/v1/accounts/${id}/unfollow`
const MASTODON_BLOCK_URL = id => `/api/v1/accounts/${id}/block`
const MASTODON_UNBLOCK_URL = id => `/api/v1/accounts/${id}/unblock`
const MASTODON_MUTE_URL = id => `/api/v1/accounts/${id}/mute`
const MASTODON_UNMUTE_URL = id => `/api/v1/accounts/${id}/unmute`
const MASTODON_STATUS_URL = id => `/api/v1/statuses/${id}`
const MASTODON_STATUS_CONTEXT_URL = id => `/api/v1/statuses/${id}/context`
const MASTODON_USER_URL = '/api/v1/accounts'