The code powering m.abunchtell.com https://m.abunchtell.com
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

13 rindas
375 B

  1. # frozen_string_literal: true
  2. class REST::NotificationSerializer < ActiveModel::Serializer
  3. attributes :id, :type, :created_at
  4. belongs_to :from_account, key: :account, serializer: REST::AccountSerializer
  5. belongs_to :status, if: :status_type?, serializer: REST::StatusSerializer
  6. def status_type?
  7. [:favourite, :reblog, :mention].include?(object.type)
  8. end
  9. end