diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-07 12:52:25 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-07 12:52:25 +0100 |
commit | ffe48fd7c6b970bc9b98bf999535e49572e82035 (patch) | |
tree | 518c106efbca8b9060cef6283d7676f614ada81e /app/views/api/statuses | |
parent | ab6696e855b58cdb2b6264c9acb0397dd7384e25 (diff) |
Improving how the API responses look
Diffstat (limited to 'app/views/api/statuses')
-rw-r--r-- | app/views/api/statuses/show.rabl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/api/statuses/show.rabl b/app/views/api/statuses/show.rabl index 344517236..83377e0e8 100644 --- a/app/views/api/statuses/show.rabl +++ b/app/views/api/statuses/show.rabl @@ -1,13 +1,13 @@ object @status attributes :id, :created_at, :in_reply_to_id -node(:uri) { |status| uri_for_target(status) } -node(:content) { |status| status.local? ? linkify(status) : status.content } -node(:url) { |status| url_for_target(status) } -node(:reblogs) { |status| status.reblogs.count } -node(:favourites) { |status| status.favourites.count } -node(:favourited) { |status| current_user.account.favourited?(status) } -node(:reblogged) { |status| current_user.account.reblogged?(status) } +node(:uri) { |status| uri_for_target(status) } +node(:content) { |status| status.local? ? linkify(status) : status.content } +node(:url) { |status| url_for_target(status) } +node(:reblogs_count) { |status| status.reblogs.count } +node(:favourites_count) { |status| status.favourites.count } +node(:favourited) { |status| current_user.account.favourited?(status) } +node(:reblogged) { |status| current_user.account.reblogged?(status) } child :reblog => :reblog do extends('api/statuses/show') |