Skip to content

Instantly share code, notes, and snippets.

@ZempTime
Created July 26, 2017 21:55
Show Gist options
  • Save ZempTime/adfff76d00518b82b663626a7c194408 to your computer and use it in GitHub Desktop.
Save ZempTime/adfff76d00518b82b663626a7c194408 to your computer and use it in GitHub Desktop.
Controller Setups
module Api
module V2
module Investments
class ProcessesController < Api::V2::BaseController
include InvestmentScoped
def index
end
def show
end
end
end
end
end
class Api::V2::Investments::ProcessesController < Api::V2::BaseController
include InvestmentScoped
def index
end
def show
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment