summaryrefslogtreecommitdiff
path: root/app/serializers/switchboard_serializer.rb
blob: 6d396674ba3bf4b440dabcfe039e40f18cc7114d (plain)
1
2
3
4
5
6
7
8
9
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
end