This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-19 15:33:02 -08:00
|
|
|
object @notification
|
|
|
|
|
2017-03-23 19:54:24 -07:00
|
|
|
attributes :id, :type, :created_at
|
2016-11-19 15:33:02 -08:00
|
|
|
|
|
|
|
child from_account: :account do
|
|
|
|
extends 'api/v1/accounts/show'
|
|
|
|
end
|
|
|
|
|
|
|
|
node(:status, if: lambda { |n| [:favourite, :reblog, :mention].include?(n.type) }) do |n|
|
|
|
|
partial 'api/v1/statuses/show', object: n.target_status
|
|
|
|
end
|