8 lines
147 B
Ruby
8 lines
147 B
Ruby
class VisitorsController < ApplicationController
|
|
before_action :skip_authorization
|
|
|
|
def index
|
|
@canisters = authorize Canster.all
|
|
end
|
|
end
|