Controllers Basic

suggest change
class UsersController < ApplicationController
  def index
    respond_to do |format|
      format.html { render html: "Hello World" }
    end
  end
end

This is a basic controller, with the addition of the following route (in routes.rb):

resources :users, only: [:index]

Will display the Hello World message in a webpage when you access the URL /users

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


ActionController:
* Controllers Basic

Table Of Contents
3 Views
19 Caching
20 ActionController
23 Rails 5
25 Mongoid
26 Gems
55 CSV