Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. module Api
  2. module V2
  3. module Investments
  4. class ProcessesController < Api::V2::BaseController
  5. include InvestmentScoped
  6.  
  7. def index
  8. end
  9.  
  10. def show
  11. end
  12.  
  13. end
  14. end
  15. end
  16. end
  17.  
  18.  
  19. class Api::V2::Investments::ProcessesController < Api::V2::BaseController
  20. include InvestmentScoped
  21.  
  22. def index
  23. end
  24.  
  25. def show
  26. end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement