README.md in intercom-3.6.0 vs README.md in intercom-3.6.1

- old
+ new

@@ -174,9 +174,12 @@ intercom.notes.find_all(user_id: '123').each {|note| puts note.body} ``` #### Conversations ```ruby +# Iterate over all conversations for your app +intercom.conversations.all.each { |convo| ... } + # FINDING CONVERSATIONS FOR AN ADMIN # Iterate over all conversations (open and closed) assigned to an admin intercom.conversations.find_all(type: 'admin', id: '7').each {|convo| ... } # Iterate over all open conversations assigned to an admin intercom.conversations.find_all(type: 'admin', id: 7, open: true).each {|convo| ... }