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

43 lines
830 B
Ruby

# frozen_string_literal: true
class Staffs::PeopleController < ApplicationController
before_action :set_person, except: %i[index new create]
# 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
# GET /staff/people/new
def new
@person = Person.new
authorize [:staff, @person]
end
# POST /staff/people
def create
@person = Person.new permitted_attributes [:staff, Person]
@person.contact_list = ContactList.new
authorize [:staff, @person]
return render :new unless @person.save
redirect_to [:staff, @person]
end
private
def set_person
@person = Person.find params[:id]
end
end