2020-12-16 00:31:30 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
2021-01-14 00:12:57 +00:00
|
|
|
class ChatConversationAccountsController < BaseController
|
2020-12-16 00:31:30 +00:00
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
PER_PAGE = 20
|
|
|
|
|
|
|
|
def index
|
|
|
|
authorize :account, :index?
|
2021-01-14 00:12:57 +00:00
|
|
|
@chat_conversation_accounts = ChatConversationAccount.where(account: @account).page(params[:page]).per(PER_PAGE)
|
2020-12-16 00:31:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:account_id])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|