1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/controllers/staffs/people_controller.rb

25 lines
455 B
Ruby

# frozen_string_literal: true
class Staffs::PeopleController < ApplicationController
before_action :set_person, except: :index
# GET /staff/people
def index
authorize %i[staff person]
@people = policy_scope(
Person,
policy_scope_class: Staff::PersonPolicy::Scope,
)
end
# GET /staff/people/:id
def show
authorize [:staff, @person]
end
private
def set_person
@person = Person.find params[:id]
end
end