home_controller.rb 176 B

1234567891011
  1. class HomeController < ApplicationController
  2. skip_before_action :authenticate_user!
  3. before_action :upgrade_warning, only: :index
  4. def index
  5. end
  6. def about
  7. end
  8. end