Feature: API to get most used labels (#447)

* Add most-used labels API

* Filter conversation by labels

* Move match_all to any query

Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
This commit is contained in:
Subin T P
2020-02-02 16:29:18 +05:30
committed by GitHub
parent 199642d3bd
commit b3264a0d7b
6 changed files with 54 additions and 2 deletions

View File

@@ -36,6 +36,18 @@ describe ::ConversationFinder do
end
end
context 'with labels' do
let(:params) { { labels: ['resolved'] } }
it 'filter conversations by labels' do
conversation = inbox.conversations.first
conversation.update_labels('resolved')
result = conversation_finder.perform
expect(result[:conversations].count).to be 1
end
end
context 'with pagination' do
let(:params) { { status: 'open', assignee_type_id: 0, page: 1 } }