home_controller.rb 128B

12345678910
  1. class HomeController < ApplicationController
  2. skip_before_filter :authenticate_user!
  3. def index
  4. end
  5. def about
  6. end
  7. end