Updated results to only be visible if requester has sent chat message
• Updated: - results in RequestedConversationsController to only be visible if requester has sent chat message for count and index routes
This commit is contained in:
parent
0bf305019a
commit
c37a5822fc
@ -12,7 +12,11 @@ class Api::V1::ChatConversations::RequestedConversationsController < Api::BaseCo
|
|||||||
end
|
end
|
||||||
|
|
||||||
def count
|
def count
|
||||||
count = ChatConversationAccount.where(account: current_account, is_hidden: false, is_approved: false).count
|
count = ChatConversationAccount.where(
|
||||||
|
account: current_account,
|
||||||
|
is_hidden: false,
|
||||||
|
is_approved: false,
|
||||||
|
).where.not(last_chat_message_id: nil).count
|
||||||
render json: count
|
render json: count
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -27,7 +31,7 @@ class Api::V1::ChatConversations::RequestedConversationsController < Api::BaseCo
|
|||||||
account: current_account,
|
account: current_account,
|
||||||
is_hidden: false,
|
is_hidden: false,
|
||||||
is_approved: false
|
is_approved: false
|
||||||
).paginate_by_max_id(
|
).where.not(last_chat_message_id: nil).paginate_by_max_id(
|
||||||
limit_param(DEFAULT_CHAT_CONVERSATION_LIMIT),
|
limit_param(DEFAULT_CHAT_CONVERSATION_LIMIT),
|
||||||
params[:max_id],
|
params[:max_id],
|
||||||
params[:since_id]
|
params[:since_id]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user