Sha256: 6f3950ac6cc66ab0f38899d0530183d43826f629d44edc8c143773e8b67181d1
Contents?: true
Size: 435 Bytes
Versions: 27
Compression:
Stored size: 435 Bytes
Contents
module ForestLiana class IntercomController < ForestLiana::ApplicationController def user_conversations getter = IntercomConversationsGetter.new(params) getter.perform render json: serialize_models(getter.records, { count: getter.count }) end def attributes getter = IntercomAttributesGetter.new(params) getter.perform render json: serialize_model(getter.records) end end end
Version data entries
27 entries across 27 versions & 1 rubygems