Chatwoot/app/controllers/public/api/v1/portals_controller.rb
2022-07-05 17:15:38 +05:30

11 lines
214 B
Ruby

class Public::Api::V1::PortalsController < PublicController
before_action :set_portal
def show; end
private
def set_portal
@portal = ::Portal.find_by!(slug: params[:slug], archived: false)
end
end