This website works better with JavaScript.
Explore
Help
Register
Sign In
me
/
glitchier-soc
Watch
1
Star
0
Fork
You've already forked glitchier-soc
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
389535429e
th-downstream
main
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '389535429e'
${ noResults }
glitchier-soc
/
app
/
views
/
api
/
v1
/
statuses
/
show.rabl
9 lines
121 B
Raw
Normal View
History
Unescape
Escape
Adding doorkeeper, adding a REST API POST /api/statuses Params: status (text contents), in_reply_to_id (optional) GET /api/statuses/:id POST /api/statuses/:id/reblog GET /api/accounts/:id GET /api/accounts/:id/following GET /api/accounts/:id/followers POST /api/accounts/:id/follow POST /api/accounts/:id/unfollow POST /api/follows Params: uri (e.g. user@domain) OAuth authentication is currently disabled, but the API can be used with HTTP Auth.
9 years ago
object @status
Caching should work correctly now (fingers crossed)
8 years ago
cache
Adding doorkeeper, adding a REST API POST /api/statuses Params: status (text contents), in_reply_to_id (optional) GET /api/statuses/:id POST /api/statuses/:id/reblog GET /api/accounts/:id GET /api/accounts/:id/following GET /api/accounts/:id/followers POST /api/accounts/:id/follow POST /api/accounts/:id/unfollow POST /api/follows Params: uri (e.g. user@domain) OAuth authentication is currently disabled, but the API can be used with HTTP Auth.
9 years ago
Enable caching for some rabl views
8 years ago
extends 'api/v1/statuses/_show'
Adding doorkeeper, adding a REST API POST /api/statuses Params: status (text contents), in_reply_to_id (optional) GET /api/statuses/:id POST /api/statuses/:id/reblog GET /api/accounts/:id GET /api/accounts/:id/following GET /api/accounts/:id/followers POST /api/accounts/:id/follow POST /api/accounts/:id/unfollow POST /api/follows Params: uri (e.g. user@domain) OAuth authentication is currently disabled, but the API can be used with HTTP Auth.
9 years ago
child :reblog => :reblog do
Enable caching for some rabl views
8 years ago
extends 'api/v1/statuses/_show'
API returns mentions for statuses, compose form pre-fills all relevant usernames into the form when replying
8 years ago
end