Skip to content

Instantly share code, notes, and snippets.

@jeanpaulsio
Created May 16, 2017 19:48
Show Gist options
  • Save jeanpaulsio/1614d76faebc7d2646050fc3f9c30f19 to your computer and use it in GitHub Desktop.
Save jeanpaulsio/1614d76faebc7d2646050fc3f9c30f19 to your computer and use it in GitHub Desktop.
API routes 1
Rails.application.routes.draw do
# API Routes
namespace :api, defaults: { format: 'json' } do
namespace :v1 do
# Routes for authentication will go here
resources :recipients
resources :messages, only: [:create]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment