module Ecom module Core class CompaniesController < ApplicationController def index data = Ecom::Core::Company.all render json: data end def default_company data = Ecom::Core::Company.first render json: data end end end end