8 lines
146 B
Ruby
8 lines
146 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HomeController < ApplicationController
|
|
skip_after_action :verify_authorized
|
|
|
|
# GET /
|
|
def show; end
|
|
end
|