blob: 7c21f820814ba0aac90c965cb30ebf70606f67f7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class SwitchboardSerializer < ActiveModel::Serializer
embed :ids, :include => true
attributes :id, :name
has_many :switchboard_entries
has_many :sip_accounts, :through => :switchboard_entries
has_many :phone_numbers
has_many :active_calls
has_many :dispatchable_incoming_calls
end
|