Posts by Otavio Henrique • 11 points
1 post
-
1
votes2
answers202
viewsA: How to create a Ruby On Rails application (not just an API) and provide some routes as an API
You can create a namespace in his routes.rb and call it api for example: namespace :api do resources :articles end Which will generate the following route table:…