mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-13 21:08:19 +08:00
10 lines
227 B
Ruby
10 lines
227 B
Ruby
class Api::V1::Accounts::Contacts::BaseController < Api::V1::Accounts::BaseController
|
|
before_action :ensure_contact
|
|
|
|
private
|
|
|
|
def ensure_contact
|
|
@contact = Current.account.contacts.find(params[:contact_id])
|
|
end
|
|
end
|