9 lines
184 B
Ruby
9 lines
184 B
Ruby
class VisitorsController < ApplicationController
|
|
before_action :skip_authorization
|
|
|
|
def index
|
|
@doodads = authorize Doodad.all
|
|
@canisters = authorize Canister.all
|
|
end
|
|
end
|