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/settings/contacts_controller.rb

20 lines
380 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Settings::ContactsController < ApplicationController
before_action :skip_policy_scope, only: :index
before_action :set_account
# GET /settings/contacts
def index
authorize %i[settings contact]
@contacts = @account.contact_list.contacts
end
private
def set_account
@account = current_account.clone&.reload
end
end