Gab-Social/app/controllers/admin/chat_conversation_accounts_controller.rb

19 lines
420 B
Ruby
Raw Normal View History

2020-12-16 00:31:30 +00:00
# frozen_string_literal: true
module Admin
class ChatConversationAccountsController < BaseController
2020-12-16 00:31:30 +00:00
before_action :set_account
PER_PAGE = 20
def index
authorize :account, :index?
@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