diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api/swagger.yaml | 24 | ||||
| -rw-r--r-- | docs/swagger.go | 12 |
2 files changed, 22 insertions, 14 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index 7de635d1e..3454364a1 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -3849,11 +3849,13 @@ info: admin: grants admin access to everything admin:read: grants admin read access to everything admin:read:accounts: grants admin read access to accounts + admin:read:custom_emojis: grants admin read access to custom emojis admin:read:domain_allows: grants admin read access to domain_allows admin:read:domain_blocks: grants admin read access to domain_blocks admin:read:reports: grants admin read access to reports admin:write: grants admin write access to everything admin:write:accounts: grants write read access to accounts + admin:write:custom_emojis: grants admin write access to custom emojis admin:write:domain_allows: grants admin write access to domain_allows admin:write:domain_blocks: grants write read access to domain_blocks admin:write:reports: grants admin write access to reports @@ -5551,7 +5553,7 @@ paths: description: internal server error security: - OAuth2 Bearer: - - admin:read + - admin:read:custom_emojis summary: View local and remote emojis available to / known by this instance. tags: - admin @@ -5598,7 +5600,7 @@ paths: description: internal server error security: - OAuth2 Bearer: - - admin:write + - admin:write:custom_emojis summary: Upload and create a new instance emoji. tags: - admin @@ -5638,7 +5640,7 @@ paths: description: internal server error security: - OAuth2 Bearer: - - admin:write + - admin:write:custom_emojis summary: Delete a **local** emoji with the given ID from the instance. tags: - admin @@ -5671,7 +5673,7 @@ paths: description: internal server error security: - OAuth2 Bearer: - - admin:read + - admin:read:custom_emojis summary: Get the admin view of a single emoji. tags: - admin @@ -5743,7 +5745,7 @@ paths: description: internal server error security: - OAuth2 Bearer: - - admin:write + - admin:write:custom_emojis summary: Perform admin action on a local or remote emoji known to this instance. tags: - admin @@ -5773,7 +5775,7 @@ paths: description: internal server error security: - OAuth2 Bearer: - - admin:read + - admin:read:custom_emojis summary: Get a list of existing emoji categories. tags: - admin @@ -13933,13 +13935,15 @@ securityDefinitions: admin: grants admin access to everything admin:read: grants admin read access to everything admin:read:accounts: grants admin read access to accounts - admin:read:domain_allows: grants admin read access to domain_allows - admin:read:domain_blocks: grants admin read access to domain_blocks + admin:read:custom_emojis: grants admin read access to custom emojis + admin:read:domain_allows: grants admin read access to domain allows + admin:read:domain_blocks: grants admin read access to domain blocks admin:read:reports: grants admin read access to reports admin:write: grants admin write access to everything admin:write:accounts: grants write read access to accounts - admin:write:domain_allows: grants admin write access to domain_allows - admin:write:domain_blocks: grants write read access to domain_blocks + admin:write:custom_emojis: grants admin write access to custom emojis + admin:write:domain_allows: grants admin write access to domain allows + admin:write:domain_blocks: grants write read access to domain blocks admin:write:reports: grants admin write access to reports profile: grants read access to verify_credentials push: grants read/write access to push diff --git a/docs/swagger.go b/docs/swagger.go index c549a3de3..3f0ed2249 100644 --- a/docs/swagger.go +++ b/docs/swagger.go @@ -26,11 +26,13 @@ // - admin: grants admin access to everything // - admin:read: grants admin read access to everything // - admin:read:accounts: grants admin read access to accounts +// - admin:read:custom_emojis: grants admin read access to custom emojis // - admin:read:domain_allows: grants admin read access to domain_allows // - admin:read:domain_blocks: grants admin read access to domain_blocks // - admin:read:reports: grants admin read access to reports // - admin:write: grants admin write access to everything // - admin:write:accounts: grants write read access to accounts +// - admin:write:custom_emojis: grants admin write access to custom emojis // - admin:write:domain_allows: grants admin write access to domain_allows // - admin:write:domain_blocks: grants write read access to domain_blocks // - admin:write:reports: grants admin write access to reports @@ -85,13 +87,15 @@ // admin: grants admin access to everything // admin:read: grants admin read access to everything // admin:read:accounts: grants admin read access to accounts -// admin:read:domain_allows: grants admin read access to domain_allows -// admin:read:domain_blocks: grants admin read access to domain_blocks +// admin:read:custom_emojis: grants admin read access to custom emojis +// admin:read:domain_allows: grants admin read access to domain allows +// admin:read:domain_blocks: grants admin read access to domain blocks // admin:read:reports: grants admin read access to reports // admin:write: grants admin write access to everything // admin:write:accounts: grants write read access to accounts -// admin:write:domain_allows: grants admin write access to domain_allows -// admin:write:domain_blocks: grants write read access to domain_blocks +// admin:write:custom_emojis: grants admin write access to custom emojis +// admin:write:domain_allows: grants admin write access to domain allows +// admin:write:domain_blocks: grants write read access to domain blocks // admin:write:reports: grants admin write access to reports // profile: grants read access to verify_credentials // push: grants read/write access to push |
