show.rabl 280 B

1234567891011
  1. object @notification
  2. attributes :id, :type, :created_at
  3. child from_account: :account do
  4. extends 'api/v1/accounts/show'
  5. end
  6. node(:status, if: lambda { |n| [:favourite, :reblog, :mention].include?(n.type) }) do |n|
  7. partial 'api/v1/statuses/show', object: n.target_status
  8. end