Search code examples
ruby-on-railsruby-on-rails-5

Helpers in Rails 5 API Mode


Rails 5 in API mode seems not to support helpers.

rails new myapp --api

does not create the app/helpers folder.

How do we use the helpers in Rails 5 API mode?


Solution

  • This feature of Rails 5 has removed a lot of folders that are not required for the application.

    Please go through the deep details about the API-Mode in Rails 5....

    Refere Here