about summary refs log tree commit diff
path: root/app/views/api/v1/accounts/show.rabl
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-09-27 16:58:23 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-09-27 16:59:08 +0200
commit4f9b7432dd4d323ac6cc4efceeae2efaffe62e7d (patch)
treeacae9e59bd6971885f7cb7b7ed45c4c9d1af4fca /app/views/api/v1/accounts/show.rabl
parent3f75f522856954690d92358107e78bafd0db0baa (diff)
Fix #52 - Add API versioning (v1)
Diffstat (limited to 'app/views/api/v1/accounts/show.rabl')
-rw-r--r--app/views/api/v1/accounts/show.rabl10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/api/v1/accounts/show.rabl b/app/views/api/v1/accounts/show.rabl
new file mode 100644
index 000000000..4f6a3ff99
--- /dev/null
+++ b/app/views/api/v1/accounts/show.rabl
@@ -0,0 +1,10 @@
+object @account
+
+attributes :id, :username, :acct, :display_name, :note
+
+node(:url)             { |account| TagManager.instance.url_for(account) }
+node(:avatar)          { |account| full_asset_url(account.avatar.url(:large, false)) }
+node(:header)          { |account| full_asset_url(account.header.url(:medium, false)) }
+node(:followers_count) { |account| account.followers.count }
+node(:following_count) { |account| account.following.count }
+node(:statuses_count)  { |account| account.statuses.count  }