actually i use rails for my REST API, and i need transform my object to json but when i try i got this error:
            <h1>Template is missing</h1>
        <p>Missing template firms/show, application/show with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder, :arb, :jbuilder]}. Searched in:
  * "/Users/allan/Desktop/Work/back/app/views"
  * "/Library/Ruby/Gems/2.0.0/gems/activeadmin-0.6.0/app/views"
  * "/Library/Ruby/Gems/2.0.0/gems/kaminari-0.16.3/app/views"
  * "/Library/Ruby/Gems/2.0.0/gems/devise_invitable-1.5.5/app/views"
  * "/Library/Ruby/Gems/2.0.0/gems/devise-3.5.4/app/views"
</p>
This is my code
 def show
        firm= Firm.find_by_subdomain(params[:subdomain])
        if firm.present?
          respond_to do |format|
            @firm = firm
            format.json { render :json => @firm.to_json }
          end
        end
      end
I hope someone here can help me :)
Solve:
  def show
    render json: Firm.find_by_subdomain(current_subdomain)
  end
thank you