diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-28 11:23:33 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-28 11:25:43 +0200 |
commit | 1c6b02f936b984a17343b85a5cfb07ed93dd1cfb (patch) | |
tree | 1c07e9fb58d65000cdabf1548ee606a490aea8de /app/views | |
parent | 448a07cc3f4e4f6905b6b1c519c29d28b72bda2b (diff) |
Fix #690 - Webfinger should handle new shortform profile URLs now (nice)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/api/v1/accounts/show.rabl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/api/v1/accounts/show.rabl b/app/views/api/v1/accounts/show.rabl index 151a5080d..e21fe7941 100644 --- a/app/views/api/v1/accounts/show.rabl +++ b/app/views/api/v1/accounts/show.rabl @@ -1,6 +1,6 @@ object @account -attributes :id, :username, :acct, :display_name, :locked +attributes :id, :username, :acct, :display_name, :locked, :created_at node(:note) { |account| Formatter.instance.simplified_format(account) } node(:url) { |account| TagManager.instance.url_for(account) } |