Skip to content

Instantly share code, notes, and snippets.

@giancarlosisasi
Created July 28, 2016 03:25
Show Gist options
  • Select an option

  • Save giancarlosisasi/ec44d3dacbf6a8eb2c4e20621764b26f to your computer and use it in GitHub Desktop.

Select an option

Save giancarlosisasi/ec44d3dacbf6a8eb2c4e20621764b26f to your computer and use it in GitHub Desktop.
Rails.application.routes.draw do
namespace :api, defaults: { format: "json" } do
namespace :v1 do
resources :users, only: [:create] # solo usaremos la accion 'create' para agregar nuevos usuarios
resources :articles , except: [:new, :edit] # no necesitaremos estas acciones al tratarse de un API
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment