8 lines
127 B
Ruby
8 lines
127 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HomeController < ApplicationController
|
|
# GET /
|
|
def show
|
|
authorize :home
|
|
end
|
|
end
|