Guest User

Untitled

a guest
Oct 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. API::Application.routes.draw do
  2. namespace :api, defaults: {format: 'json'} do
  3. namespace :v1 do
  4. resources :packs, :except => [:new] do
  5. resources :designs, :only => [:create]
  6. end
  7. end
  8. end
  9.  
  10. mount Resque::Server, :at => "/resque"
  11. end
Add Comment
Please, Sign In to add comment