api_entities.rb 250 Bytes
module PushNotificationPlugin::Entities
  class DeviceUser < Api::Entities::User
    expose :device_token_list, :as => :device_tokens
    expose :notification_settings do |user, options|
      user.notification_settings.hash_flags
    end
  end

end