Created
July 26, 2017 21:55
-
-
Save ZempTime/adfff76d00518b82b663626a7c194408 to your computer and use it in GitHub Desktop.
Controller Setups
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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