Created
July 28, 2016 03:25
-
-
Save giancarlosisasi/ec44d3dacbf6a8eb2c4e20621764b26f to your computer and use it in GitHub Desktop.
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
| 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