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
|