Search is not available for this dataset
hash string | author int32 | committer_date string | timezone int64 | parents string | message string | changes string | language string |
|---|---|---|---|---|---|---|---|
6c4e1fdaac45cb91eefc7342580a08069f05ccb6 | 656 | 2020-03-30 12:15:06+05:30 | -19,800 | ['e56132c50692771b3d315d944e3a279852a4251e'] | Feature: Send images from widget | [{'old_path': 'app/javascript/widget/api/conversation.js', 'new_path': 'app/javascript/widget/api/conversation.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,10 +7,16 @@ const sendMessageAPI = async content => {\n return result;\n };\n \n+const sendAttachmentAPI = async attachment => {\n+ const urlData = ... | Ruby |
0afa5c297f3a39ffae133f0d8edf526cf1969426 | 672 | 2020-03-30 16:07:01+05:30 | -19,800 | ['6c4e1fdaac45cb91eefc7342580a08069f05ccb6'] | Bug: Fixed conversation reply mail issue when an attachment is sent (#655)
* When an attachment was sent in the reply mailer it was breaking due to the
truncating function applied on the last message content. Here the content was empty
and so it broke.
* Fixed this breakage
* Also addressed the issue that if the a... | [{'old_path': 'app/mailers/conversation_reply_mailer.rb', 'new_path': 'app/mailers/conversation_reply_mailer.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -20,7 +20,8 @@ class ConversationReplyMailer < ApplicationMailer\n \n private\n \n- def mail_subject(last_message, trim_length = 30)\n- "[##{@conversa... | Ruby |
7fcd2d0e85449ae3ecc4d1086f92335bca452941 | 656 | 2020-04-02 12:28:38+05:30 | -19,800 | ['0afa5c297f3a39ffae133f0d8edf526cf1969426'] | Feature: Support file type messages on widget and dashboard (#659)
- Adds support for file upload
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': 'app/builders/messages/outgoing/normal_builder.rb', 'new_path': 'app/builders/messages/outgoing/normal_builder.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,5 @@\n class Messages::Outgoing::NormalBuilder\n+ include ::FileTypeHelper\n attr_reader :message\n \n def initialize(user, con... | Ruby |
cb22b396eb08f50263865b20abdc4906c986eab9 | 542 | 2020-04-03 13:04:58+05:30 | -19,800 | ['7fcd2d0e85449ae3ecc4d1086f92335bca452941'] | Feature: Website SDK (#653)
Add SDK functions
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': None, 'new_path': 'app/actions/contact_identify_action.rb', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,47 @@\n+class ContactIdentifyAction\n+ pattr_initialize [:contact!, :params!]\n+\n+ def perform\n+ ActiveRecord::Base.transaction do\n+ @contact = merge_contact(existing_identified_... | Ruby |
8e5956479374bb325f819ec98f890fb9fea9d3ca | 603 | 2020-04-05 12:11:50+05:30 | -19,800 | ['cb22b396eb08f50263865b20abdc4906c986eab9'] | Chore: Update ruby version (#665) | [{'old_path': '.circleci/config.yml', 'new_path': '.circleci/config.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,7 +7,7 @@ defaults: &defaults\n working_directory: ~/build\n docker:\n # specify the version you desire here\n- - image: circleci/ruby:2.6.5-node-browsers\n+ - image: circleci/rub... | Ruby |
a1a81e37996619798bb44f23ac2f2c0ed67d5f66 | 542 | 2020-04-05 22:11:27+05:30 | -19,800 | ['8e5956479374bb325f819ec98f890fb9fea9d3ca'] | Feature: Twilio SMS Channel (#658)
Twilio SMS Channel
Fixes : #350 | [{'old_path': 'Gemfile', 'new_path': 'Gemfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -25,7 +25,7 @@ gem 'uglifier'\n \n ##-- for active storage --##\n gem 'aws-sdk-s3', require: false\n-gem 'azure-storage', require: false\n+gem 'azure-storage-blob', require: false\n gem 'google-cloud-storage', require: fal... | Ruby |
99eaf59509f28af2fb231599ea1f24c4021d7c88 | 656 | 2020-04-06 22:17:07+05:30 | -19,800 | ['a1a81e37996619798bb44f23ac2f2c0ed67d5f66'] | Feature: Ability to set an account name (#667)
* Ability to change the account name
* Ability to set a language to the account
Addresses: #667 #307
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': '.codeclimate.yml', 'new_path': '.codeclimate.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,3 +29,4 @@ exclude_patterns:\n - "docs/*"\n - "**/*.md"\n - "**/*.yml"\n+ - "app/javascript/dashboard/i18n/locale"\n'}, {'old_path': 'app/javascript/dashboard/App.vue', 'new_path': 'app/javascr... | Ruby |
4feca1d88dedd02d22d49f8aa207c6d056c34199 | 603 | 2020-04-07 10:19:19+05:30 | -19,800 | ['e04b37dfcfa5cc0ac0877f82ca3fbe6a0741fe1c'] | Feature: Business logo API for web widget (#674)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -4,6 +4,10 @@ require:\n - rubocop-rspec\n inherit_from: .rubocop_todo.yml\n \n+Lint/RaiseException:\n+ Enabled: true\n+Lint/StructNewOverride:\n+ Enabled: true\n Layout/LineLength:\n Max: 150\n Metrics/Cla... | Ruby |
1cfa756d49bdabe8d81c59cdb96b6351d357e97a | 603 | 2020-04-07 10:41:18+05:30 | -19,800 | ['4feca1d88dedd02d22d49f8aa207c6d056c34199'] | Chore: APIs for agent bots (#676)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': 'app/controllers/api/v1/accounts/inboxes_controller.rb', 'new_path': 'app/controllers/api/v1/accounts/inboxes_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,7 @@\n class Api::V1::Accounts::InboxesController < Api::BaseController\n before_action :check_authorization\n- before_... | Ruby |
48f603798b2545427dc511f015dfbb6843776909 | 542 | 2020-04-08 22:46:58+05:30 | -19,800 | ['1cfa756d49bdabe8d81c59cdb96b6351d357e97a'] | Chore: Fix URLs in README | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,5 @@\n <p align="center">\n- <img src="https://storage.googleapis.com/chatwoot-assets/woot-logo.svg" alt="Woot-logo" width="240">\n+ <img src="https://s3.us-west-2.amazonaws.com/gh-assets.chatwoot.com/brand.s... | Ruby |
b0950d6880664af2ba56994847f2b19b0ad0ec92 | 603 | 2020-04-10 16:42:37+05:30 | -19,800 | ['48f603798b2545427dc511f015dfbb6843776909'] | Feature: Rich Message Types (#610)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> | [{'old_path': 'app/builders/messages/outgoing/normal_builder.rb', 'new_path': 'app/builders/messages/outgoing/normal_builder.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,11 +3,13 @@ class Messages::Outgoing::NormalBuilder\n attr_reader :message\n \n def initialize(user, conversation, params)\n- @con... | Ruby |
743bddc0657c800ca5b932ba405fa70e3291cb46 | 603 | 2020-04-16 15:05:01+05:30 | -19,800 | ['55892e37f9017faef9ddc5c38dd3f2e378ad3082'] | Chore: Housekeeping tasks (#721)
- End point to return api version
- Move agent bot listener to sync dispatcher
- gem update | [{'old_path': 'Gemfile.lock', 'new_path': 'Gemfile.lock', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -82,10 +82,10 @@ GEM\n rake (>= 10.4, < 14.0)\n ast (2.4.0)\n attr_extras (6.2.3)\n- aws-eventstream (1.0.3)\n- aws-partitions (1.294.0)\n- aws-sdk-core (3.92.0)\n- aws-eventstream (~>... | Ruby |
c2167fcaafa4a57ca917d8cb76c1ae95e6f53992 | 314 | 2020-04-16 15:28:23+05:30 | -7,200 | ['743bddc0657c800ca5b932ba405fa70e3291cb46'] | Feature: Add catalan (Catalonia) language (#672)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com> | [{'old_path': None, 'new_path': 'app/javascript/dashboard/i18n/ca.js', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,37 @@\n+import en from \'./locale/ca\';\n+\n+export default {\n+ ...en,\n+ APP_GLOBAL: {\n+ TRIAL_MESSAGE: \'dies de prova restants.\',\n+ TRAIL_BUTTON: \'Comprar ara\',\n+ },\n+ COMPO... | Ruby |
2aa92d46fc180386d4b29b3c0d7c25e9bf85b046 | 672 | 2020-04-17 15:48:23+05:30 | -19,800 | ['c2167fcaafa4a57ca917d8cb76c1ae95e6f53992'] | Fixed confirmation email flaky tests (#534) (#735) | [{'old_path': 'spec/mailers/confirmation_instructions_spec.rb', 'new_path': 'spec/mailers/confirmation_instructions_spec.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,7 +28,7 @@ RSpec.describe \'Confirmation Instructions\', type: :mailer do\n \n it \'refers to the inviter and their account\' do\n ... | Ruby |
e3ccfc46621e6c15f3e6785b4e269816abe16127 | 542 | 2020-04-17 16:45:12+05:30 | -19,800 | ['2aa92d46fc180386d4b29b3c0d7c25e9bf85b046'] | Bug: Fix IE issues in Widget (#734) | [{'old_path': 'app/javascript/widget/components/Branding.vue', 'new_path': 'app/javascript/widget/components/Branding.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,7 +5,7 @@\n rel="noreferrer noopener nofollow"\n target="_blank"\n >\n- <img src="~widget/assets/images/logo.svg" />\n+ <img sr... | Ruby |
0817414957de1a30cd80e16941eb8c59435dc21a | 542 | 2020-04-17 18:49:14+05:30 | -19,800 | ['e3ccfc46621e6c15f3e6785b4e269816abe16127'] | Chore: Upgrade babel packages (#736)
Chore: Upgrade babel | [{'old_path': '.eslintrc.js', 'new_path': '.eslintrc.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,8 +1,8 @@\n module.exports = {\n- extends: ['airbnb/base', 'prettier', 'plugin:vue/recommended'],\n+ extends: ['airbnb-base/legacy', 'prettier', 'plugin:vue/recommended'],\n parserOptions: {\n parser: ... | Ruby |
818c769bb753521edd8af28747497b81f5e4126b | 672 | 2020-04-17 21:15:20+05:30 | -19,800 | ['0817414957de1a30cd80e16941eb8c59435dc21a'] | Chore: Message to support multiple attachments (#730)
* Changes for the message to have multiple attachments
* changed the message association to attachments from has_one to has_many
* changed all the references of this association in building and fetching to reflect this change
* Added number of attachments vali... | [{'old_path': 'app/builders/messages/message_builder.rb', 'new_path': 'app/builders/messages/message_builder.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -41,7 +41,7 @@ class Messages::MessageBuilder\n def build_message\n @message = conversation.messages.create!(message_params)\n (response.attachmen... | Ruby |
ecccb103a00f35cf4c548d8bf8be239bc66fc513 | 603 | 2020-04-18 13:47:51+05:30 | -19,800 | ['818c769bb753521edd8af28747497b81f5e4126b'] | Chore: Add a real-time event for contact resolution/update (#696)
* Chore: Add a real-time event for contact resolution/update
* Chore: Ensure Events are sent to administrators
Addresses: #419 | [{'old_path': 'app/listeners/action_cable_listener.rb', 'new_path': 'app/listeners/action_cable_listener.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,23 +3,22 @@ class ActionCableListener < BaseListener\n \n def conversation_created(event)\n conversation, account, timestamp = extract_conversation_and... | Ruby |
c0ce70e87b11ffb4c3b09a3552b329d4d677452b | 603 | 2020-04-18 20:25:58+05:30 | -19,800 | ['ecccb103a00f35cf4c548d8bf8be239bc66fc513'] | Chore: Events Cleanup (#739)
* Chore: Events Cleanup
- fix failing tests
- add additional webhook events
- clean up event logic
* Fix conversation status update in action cable
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': 'Gemfile', 'new_path': 'Gemfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -100,7 +100,7 @@ group :development, :test do\n gem 'factory_bot_rails'\n gem 'faker'\n gem 'listen'\n- gem 'mock_redis'\n+ gem 'mock_redis', git: 'https://github.com/sds/mock_redis', ref: '16d00789f0341a3aac35126c... | Ruby |
941fbb0d72f38804a9a61683d4e732836c9ddd72 | 603 | 2020-04-19 23:40:28+05:30 | -19,800 | ['c0ce70e87b11ffb4c3b09a3552b329d4d677452b'] | Chore: Web widget Inbox Tech Debts (#738)
* Chore: Webwidget Inbox Tech Debts
* Additional customization options creating Web Widget
* Changes to edit Page for Web Widget
* Remove the WebWidget API end points
* Minor chores
Address: #680, #502
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': '.scss-lint.yml', 'new_path': '.scss-lint.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -252,7 +252,7 @@ linters:\n enabled: false\n \n UnnecessaryParentReference:\n- enabled: true\n+ enabled: false\n \n UrlFormat:\n enabled: true\n'}, {'old_path': 'app/controllers/api/v1/accou... | Ruby |
5736f687e8bbbe9e4b61a256ad5bc90248dcbb79 | 361 | 2020-04-19 23:41:16+05:30 | -19,800 | ['941fbb0d72f38804a9a61683d4e732836c9ddd72'] | Chore: Bump ruby version to 2.7.0 in docs (#744) | [{'old_path': 'docs/development/environment-setup/mac-os.md', 'new_path': 'docs/development/environment-setup/mac-os.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -37,19 +37,19 @@ source ~/.rvm/scripts/rvm\n \n ### Install Ruby\n \n-Chatwoot APIs are built on Ruby on Rails, you need install ruby 2.6.5\n+Chatwo... | Ruby |
06153a96ed9c650941b8d61efdd2f4df59c0b7f6 | 542 | 2020-04-20 11:55:06+05:30 | -19,800 | ['5736f687e8bbbe9e4b61a256ad5bc90248dcbb79'] | Chore: Update swagger API documentation (#745)
* Chore: Update swagger documentation | [{'old_path': 'app/javascript/widget/components/ChatHeader.vue', 'new_path': 'app/javascript/widget/components/ChatHeader.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,8 +1,11 @@\n <template>\n <header class="header-collapsed">\n+ <div class="header-branding">\n+ <img v-if="avatarUrl" :src="avata... | Ruby |
b98a64d2dd8538b4976859646b6246de799e35b0 | 542 | 2020-04-20 15:40:45+05:30 | -19,800 | ['06153a96ed9c650941b8d61efdd2f4df59c0b7f6'] | Chore: Add S3 bucket policy (#746) | [{'old_path': 'docs/development/project-setup/storage/images/s3-users-list.png', 'new_path': 'docs/development/project-setup/storage/images/s3-users-list.png', 'type': <ModificationType.ADD: 1>, 'diff': 'Binary files /dev/null and b/docs/development/project-setup/storage/images/s3-users-list.png differ\n'}, {'old_path'... | Ruby |
dba6866b6d2edbbc8c16a7eb5417168a30122239 | 611 | 2020-04-22 12:49:46+05:30 | -19,800 | ['b98a64d2dd8538b4976859646b6246de799e35b0'] | Bug: Force scoping message metrics to account_id (#748) | [{'old_path': 'app/builders/v2/report_builder.rb', 'new_path': 'app/builders/v2/report_builder.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -50,14 +50,15 @@ class V2::ReportBuilder\n .count\n end\n \n+ # unscoped removes all scopes added to a model previously\n def incoming_messages_count\n- ... | Ruby |
645d53db1c8a15759ccc2e5bb291b8435b61cc12 | 542 | 2020-04-22 13:14:09+05:30 | -19,800 | ['dba6866b6d2edbbc8c16a7eb5417168a30122239'] | Bug: Fix webwidget.triggered event (#750) | [{'old_path': 'app/javascript/sdk/IFrameHelper.js', 'new_path': 'app/javascript/sdk/IFrameHelper.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -88,11 +88,11 @@ export const IFrameHelper = {\n \n toggleBubble: () => {\n onBubbleClick();\n- if (window.$chatwoot.isOpen) {\n- IFrameHelper.pus... | Ruby |
7d41b7a5dcdf7f71a118337505ef797d1ab9df4d | 542 | 2020-04-23 12:21:45+05:30 | -19,800 | ['645d53db1c8a15759ccc2e5bb291b8435b61cc12'] | Bug: Add account scoping in CTA (#754) | [{'old_path': 'app/javascript/dashboard/components/widgets/conversation/EmptyState.vue', 'new_path': 'app/javascript/dashboard/components/widgets/conversation/EmptyState.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -40,10 +40,10 @@\n <script>\n import { mapGetters } from 'vuex';\n import adminMixin from '../... | Ruby |
3fcd367952bd16dcc843a1bb7e57dc46f06693cc | 603 | 2020-04-23 23:52:16+05:30 | -19,800 | ['7d41b7a5dcdf7f71a118337505ef797d1ab9df4d'] | Chore: New Crowdin translations (#747)
Brings in new translation files from Crowdin. | [{'old_path': 'app/javascript/dashboard/i18n/locale/ca/agentMgmt.json', 'new_path': 'app/javascript/dashboard/i18n/locale/ca/agentMgmt.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,13 +2,14 @@\n "AGENT_MGMT": {\n "HEADER": "Agents",\n "HEADER_BTN_TXT": "Afegir Agent",\n- "LOADING": "S\'està r... | Ruby |
94192e81842c5911c3178b60a880350dbc40ab74 | 472 | 2020-04-25 22:43:54+05:30 | -10,800 | ['3fcd367952bd16dcc843a1bb7e57dc46f06693cc'] | Remove deprecated scope from FB Channel (#761)
Remove deprecated scope from FB Channel | [{'old_path': 'app/javascript/dashboard/routes/dashboard/settings/inbox/channels/Facebook.vue', 'new_path': 'app/javascript/dashboard/routes/dashboard/settings/inbox/channels/Facebook.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -196,7 +196,7 @@ export default {\n },\n {\n scope:\n-... | Ruby |
6770126de0ea5dde28ee8bea8ab30dfbf9874a7b | 542 | 2020-04-25 23:18:00+05:30 | -19,800 | ['94192e81842c5911c3178b60a880350dbc40ab74'] | Feature: Customise the position of messenger (#767)
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> | [{'old_path': 'app/javascript/packs/sdk.js', 'new_path': 'app/javascript/packs/sdk.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -8,7 +8,7 @@ const runSDK = ({ baseUrl, websiteToken }) => {\n hasLoaded: false,\n hideMessageBubble: chatwootSettings.hideMessageBubble || false,\n isOpen: false,\n- ... | Ruby |
fde4f9271bb21f2ac1909b42ca075893321c4bd2 | 542 | 2020-04-27 15:15:05+05:30 | -19,800 | ['6770126de0ea5dde28ee8bea8ab30dfbf9874a7b'] | Bug: Redirect user to set new password screen (#772) | [{'old_path': 'app/javascript/dashboard/routes/auth/Confirmation.vue', 'new_path': 'app/javascript/dashboard/routes/auth/Confirmation.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -22,7 +22,7 @@ export default {\n Auth.verifyPasswordToken({\n confirmationToken: this.confirmationToken\n }).... | Ruby |
168042f9a4df32349301e493560f6534ef3daaa3 | 656 | 2020-04-29 13:54:56+05:30 | -19,800 | ['fde4f9271bb21f2ac1909b42ca075893321c4bd2'] | Feature: Support an Emoji selector in the chat widget (#773)
* Adds emoji widget to web widget
* Style fixes for the send button
* Adds cursor to emoji widget action buttons | [{'old_path': 'app/javascript/dashboard/assets/scss/_woot.scss', 'new_path': 'app/javascript/dashboard/assets/scss/_woot.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -9,7 +9,6 @@\n @import 'widgets/conv-header';\n @import 'widgets/conversation-card';\n @import 'widgets/conversation-view';\n-@import 'widgets... | Ruby |
0cb733397766cf3c5ae095f45f7af52a9b016576 | 542 | 2020-04-30 01:41:13+05:30 | -19,800 | ['168042f9a4df32349301e493560f6534ef3daaa3'] | Feature: Twilio Whatsapp Integration (#779)
Twilio Whatsapp Integration
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': 'Gemfile', 'new_path': 'Gemfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -17,6 +17,7 @@ gem 'jbuilder'\n gem 'kaminari'\n gem 'responders'\n gem 'rest-client'\n+gem 'telephone_number'\n gem 'time_diff'\n gem 'tzinfo-data'\n gem 'valid_email2'\n"}, {'old_path': 'Gemfile.lock', 'new_path': 'Gemfi... | Ruby |
0b65526b85700e091344650aa2123b342b87139a | 672 | 2020-04-30 20:20:26+05:30 | -19,800 | ['0cb733397766cf3c5ae095f45f7af52a9b016576'] | Feature: Conversation Continuity with Email (#770)
* Added POC for mail inbox reply email
* created mailbox and migratuion for the same
* cleaned up sidekiq queues and added the queues for action mailbox and active storage
* created conversation mailbox and functionlaity to create a message on the conversation when... | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -8,7 +8,7 @@ FORCE_SSL=\n # api_only: disables the UI for signup, but you can create sign ups via the account apis\n ENABLE_ACCOUNT_SIGNUP= \n \n-#redis config\n+# Redis config\n REDIS_URL=redis://redis:6379\n # ... | Ruby |
0690d3191dc8bd1f30a3115d74c21365a68ee851 | 603 | 2020-04-30 21:32:34+05:30 | -19,800 | ['0b65526b85700e091344650aa2123b342b87139a'] | Chore: Review docker issues (#787)
* Fix docker issues
Addresses: #701
* Add action cable configurations
Co-authored-by: Sony Mathew <ynos1234@gmail.com> | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,12 +1,17 @@\n-SECRET_KEY_BASE=\n+# Used to verify the integrity of signed cookies. so ensure a secure value is set\n+SECRET_KEY_BASE=replace_with_lengthy_secure_hex\n+\n+# Replace with the URL you are planning... | Ruby |
1ebe9fdba92e090902846085f77786381bd4a2e6 | 656 | 2020-05-01 01:22:13+05:30 | -19,800 | ['0690d3191dc8bd1f30a3115d74c21365a68ee851'] | Fixes broken seeds issue (#788) | [{'old_path': 'db/seeds.rb', 'new_path': 'db/seeds.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,7 +1,7 @@\n account = Account.create!(\n name: 'Acme Inc',\n domain: 'support.chatwoot.com',\n- from_email: ENV.fetch('MAILER_SENDER_EMAIL', 'accounts@chatwoot.com')\n+ support_email: ENV.fetch('MAILER_SEN... | Ruby |
29ae232e544eb92e9202d546f386363713e94fd8 | 314 | 2020-05-01 11:45:46+05:30 | -7,200 | ['1ebe9fdba92e090902846085f77786381bd4a2e6'] | Feature: Add spanish (Spain) language (#671)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': None, 'new_path': 'app/javascript/dashboard/i18n/es.js', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,37 @@\n+import en from './locale/es';\n+\n+export default {\n+ ...en,\n+ APP_GLOBAL: {\n+ TRIAL_MESSAGE: 'días de prueba restantes.',\n+ TRAIL_BUTTON: 'Comprar ahora',\n+ },\n+ COMPONE... | Ruby |
66aace7c13878b91cfd4fe128cf64196a37a6be2 | 603 | 2020-05-01 12:03:46+05:30 | -19,800 | ['29ae232e544eb92e9202d546f386363713e94fd8'] | Chore: Add Romanian, Portuguese, Brazilian, Ukrainian languages (#790)
* New translations integrations.json (Romanian)
* New translations integrations.json (Portuguese, Brazilian)
* New translations integrations.json (Ukrainian)
* New translations integrations.json (Portuguese)
* New translations inboxMgmt... | [{'old_path': 'app/javascript/dashboard/i18n/locale/es/agentMgmt.json', 'new_path': 'app/javascript/dashboard/i18n/locale/es/agentMgmt.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,8 +2,8 @@\n "AGENT_MGMT": {\n "HEADER": "Agentes",\n "HEADER_BTN_TXT": "Añadir agente",\n- "LOADING": "Se esta r... | Ruby |
96da27f1f6fe27e6c0dac8b241840a150b53dde6 | 603 | 2020-05-01 14:53:43+05:30 | -19,800 | ['66aace7c13878b91cfd4fe128cf64196a37a6be2'] | Feature: User Notification Objects (#752)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com> | [{'old_path': None, 'new_path': 'app/builders/notification_builder.rb', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,32 @@\n+class NotificationBuilder\n+ pattr_initialize [:notification_type!, :user!, :account!, :primary_actor!]\n+\n+ def perform\n+ return unless user_subscribed_to_notification?\n+\n+ ... | Ruby |
d4ff9f5b456f7eb61ea69cfc2d0e5cb61cfcb643 | 603 | 2020-05-01 16:49:28+05:30 | -19,800 | ['96da27f1f6fe27e6c0dac8b241840a150b53dde6'] | Chore: Add additional information to conversation meta (#795)
Chore: Add additional information to conversation meta | [{'old_path': 'app/views/api/v1/accounts/conversations/messages/index.json.jbuilder', 'new_path': 'app/views/api/v1/accounts/conversations/messages/index.json.jbuilder', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,9 @@\n json.meta do\n json.labels @conversation.label_list\n json.additional_attributes ... | Ruby |
8f0c4281c7dc5a5a15812194caba29e5d5ce4018 | 542 | 2020-05-01 22:30:57+05:30 | -19,800 | ['d4ff9f5b456f7eb61ea69cfc2d0e5cb61cfcb643'] | Chore: Fix data migration in notification settings (#797) | [{'old_path': 'db/migrate/20200422130153_create_notifications.rb', 'new_path': 'db/migrate/20200422130153_create_notifications.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,7 +25,7 @@ class CreateNotifications < ActiveRecord::Migration[6.0]\n def add_push_settings_to_users\n ::User.find_in_batches do... | Ruby |
8906fd808df423def7427df5918e101ae0d0d81e | 542 | 2020-05-01 23:00:33+05:30 | -19,800 | ['8f0c4281c7dc5a5a15812194caba29e5d5ce4018'] | Bug: Fix missing contact_id in conversation list (#798) | [{'old_path': 'app/javascript/dashboard/routes/dashboard/conversation/ContactPanel.vue', 'new_path': 'app/javascript/dashboard/routes/dashboard/conversation/ContactPanel.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -146,7 +146,7 @@ export default {\n return `${platformName || ''} ${platformVersion || '... | Ruby |
a951fb20cbe1ab89fd9bf6d4aa14a5a1816d28ba | 656 | 2020-05-02 09:47:36+05:30 | -19,800 | ['8906fd808df423def7427df5918e101ae0d0d81e'] | Chore: UI fixes and enhancements (#796)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com> | [{'old_path': 'app/javascript/dashboard/assets/scss/_foundation-settings.scss', 'new_path': 'app/javascript/dashboard/assets/scss/_foundation-settings.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -49,10 +49,10 @@ $global-font-size: 10px;\n $global-width: 100%;\n $global-lineheight: 1.5;\n $foundation-palett... | Ruby |
ddbc612f0bc9e349fc153ba7267785cec727e925 | 542 | 2020-05-02 15:03:43+05:30 | -19,800 | ['a951fb20cbe1ab89fd9bf6d4aa14a5a1816d28ba'] | Bug: Use beginAtZero option for reports (#803) | [{'old_path': 'app/javascript/dashboard/components/widgets/chart/BarChart.js', 'new_path': 'app/javascript/dashboard/components/widgets/chart/BarChart.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -14,7 +14,7 @@ const chartOptions = {\n scales: {\n xAxes: [\n {\n- barPercentage: 1.9,\n+ ... | Ruby |
7e62000e1b90ffa7f91a4db9a67655f3c6ba8056 | 611 | 2020-05-02 16:04:52+05:30 | -19,800 | ['ddbc612f0bc9e349fc153ba7267785cec727e925'] | Chore: Remove redis backed reporting (#669) | [{'old_path': 'Gemfile', 'new_path': 'Gemfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -54,9 +54,6 @@ gem 'pundit'\n # https://karolgalanciak.com/blog/2019/11/30/from-activerecord-callbacks-to-publish-slash-subscribe-pattern-and-event-driven-design/\n gem 'wisper', '2.0.0'\n \n-##--- gems for reporting ---##... | Ruby |
8655466fa534ccf7d227c2da41edeb6737cc6368 | 542 | 2020-05-02 16:25:57+05:30 | -19,800 | ['7e62000e1b90ffa7f91a4db9a67655f3c6ba8056'] | Chore: Add docs for Twilio Whatsapp/SMS channel (#804) | [{'old_path': 'app/javascript/dashboard/assets/scss/widgets/_forms.scss', 'new_path': 'app/javascript/dashboard/assets/scss/widgets/_forms.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,18 +1,17 @@\n .error {\n #{$all-text-inputs},\n+ select,\n .multiselect > .multiselect__tags {\n @include thin-b... | Ruby |
d8131e450c2a76ef51ca3a32a8d64875f15d36f1 | 672 | 2020-05-02 23:29:09+05:30 | -19,800 | ['8655466fa534ccf7d227c2da41edeb6737cc6368'] | Chore: Moved the email ingress method to an env variable (#777) (#806)
* Chore: Moved the email ingress method to an env variable (#777)
* Moved the email ingress method in config to an environment variable
* Updated documentation to reflect this
* Added ingress config to staging env config (#777)
* Re-arranged ... | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -40,6 +40,15 @@ SMTP_AUTHENTICATION=\n SMTP_ENABLE_STARTTLS_AUTO=\n \n # Mail Incoming\n+\n+# Set this to appropriate ingress channel with regards to incoming emails\n+# Possible values are :\n+# :relay for Exim,... | Ruby |
db6e3fb43e425e99b3d22e37fe0ae84be1074f3b | 603 | 2020-05-03 12:15:10+05:30 | -19,800 | ['d8131e450c2a76ef51ca3a32a8d64875f15d36f1'] | Chore: API to get conversations count (#808)
Addresses: #497 | [{'old_path': 'app/controllers/api/v1/accounts/conversations_controller.rb', 'new_path': 'app/controllers/api/v1/accounts/conversations_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,6 +8,11 @@ class Api::V1::Accounts::ConversationsController < Api::BaseController\n @conversations_count = resu... | Ruby |
ba1e0dbda0f2505a29ccf8cb29734f2d9463a2ff | 603 | 2020-05-03 12:16:11+05:30 | -19,800 | ['db6e3fb43e425e99b3d22e37fe0ae84be1074f3b'] | Chore: Apple site association file for deep linking (#805) | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -89,6 +89,10 @@ TWITTER_CONSUMER_KEY=\n TWITTER_CONSUMER_SECRET=\n TWITTER_ENVIRONMENT=\n \n+### Change this env variable only if you are using a custom build mobile app\n+## Mobile app env variables\n+IOS_APP_ID... | Ruby |
dc6398ab56424bade8c120182cbeb58afbeff2a8 | 603 | 2020-05-03 12:17:27+05:30 | -19,800 | ['ba1e0dbda0f2505a29ccf8cb29734f2d9463a2ff'] | Feature: Api to toggle typing status on a conversation (#807)
- api to toggle typing status on a conversation
- clients receive webhook events on the same
Addresses: #718 , #719 , #775 | [{'old_path': 'app/controllers/api/v1/accounts/conversations_controller.rb', 'new_path': 'app/controllers/api/v1/accounts/conversations_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,4 +1,5 @@\n class Api::V1::Accounts::ConversationsController < Api::BaseController\n+ include Events::Types\n be... | Ruby |
19886b40bdbab22589f8d14c69c3c489070e7db5 | 542 | 2020-05-03 14:45:33+05:30 | -19,800 | ['dc6398ab56424bade8c120182cbeb58afbeff2a8'] | Chore: Add enter key listener for email input box (#809)
* Chore: Add enter key listener for email input box | [{'old_path': 'app/javascript/widget/components/template/EmailInput.vue', 'new_path': 'app/javascript/widget/components/template/EmailInput.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,10 +7,11 @@\n >\n <input\n v-model.trim="email"\n- class="form-input small"\n+ class="for... | Ruby |
ae3f8c02e1406b03136b2ff6d33ca5da755118d6 | 603 | 2020-05-04 17:33:55+05:30 | -19,800 | ['19886b40bdbab22589f8d14c69c3c489070e7db5'] | Chore: Add pt and pt_BR translations (#813) | [{'old_path': 'app/javascript/dashboard/i18n/locale/fr/inboxMgmt.json', 'new_path': 'app/javascript/dashboard/i18n/locale/fr/inboxMgmt.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -91,6 +91,10 @@\n "PLACEHOLDER": "Veuillez entrer le numéro de téléphone à partir duquel le message sera envoyé.",\n ... | Ruby |
98af47aae2ec12d4775fe0dd1e41456acc42c2e5 | 542 | 2020-05-04 19:07:31+05:30 | -19,800 | ['ae3f8c02e1406b03136b2ff6d33ca5da755118d6'] | Fix missing translation key (#810) | [{'old_path': 'app/javascript/widget/components/Branding.vue', 'new_path': 'app/javascript/widget/components/Branding.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,7 +6,7 @@\n target="_blank"\n >\n <img src="~widget/assets/images/logo.svg" alt="ChatwootLogo" />\n- <span>Powered by Chatwoot</sp... | Ruby |
fabc3170b700f4009887e44df3e63c5ea06c51ac | 672 | 2020-05-04 23:06:42+05:30 | -19,800 | ['98af47aae2ec12d4775fe0dd1e41456acc42c2e5'] | Feature: Feature flags on account (#814) (#815)
* Feature: Feature flags on account (#814)
* Added the new column on account model for managing feature flags
* Added the inbound email flag
* Locked the settings of this eature in account settings based on this
* Encapsulated the feature flaging as a concern. With t... | [{'old_path': '.codeclimate.yml', 'new_path': '.codeclimate.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n version: "2"\n plugins:\n rubocop:\n- enabled: true\n+ enabled: false\n channel: rubocop-0-73\n eslint:\n enabled: false\n'}, {'old_path': 'app/javascript/dashboard/routes... | Ruby |
5bc8219db52783e4d4bcb94aa1237714a9c5e602 | 656 | 2020-05-04 23:07:56+05:30 | -19,800 | ['fabc3170b700f4009887e44df3e63c5ea06c51ac'] | Feature: Typing Indicator on widget and dashboard (#811)
* Adds typing indicator for widget
* typing indicator for agents in dashboard
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': 'app/controllers/api/v1/accounts/conversations_controller.rb', 'new_path': 'app/controllers/api/v1/accounts/conversations_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -25,11 +25,10 @@ class Api::V1::Accounts::ConversationsController < Api::BaseController\n end\n \n def toggle_typi... | Ruby |
44fae4a4a180800120d932d670727205e2587be0 | 542 | 2020-05-04 23:48:47+05:30 | -19,800 | ['5bc8219db52783e4d4bcb94aa1237714a9c5e602'] | Feature: Add default value to ChatForm (#816)
* Feature: Add adefault value to ChatForm | [{'old_path': 'app/javascript/shared/components/ChatForm.vue', 'new_path': 'app/javascript/shared/components/ChatForm.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -21,7 +21,7 @@\n </div>\n <button\n v-if="!submittedValues.length"\n- class="button small block"\n+ class="butto... | Ruby |
5bd7a4c5111f7c425bfb645c93a6c8a3d364b920 | 361 | 2020-05-05 01:59:38+05:30 | -19,800 | ['44fae4a4a180800120d932d670727205e2587be0'] | Feature: Add installation script (#776)
* Feature: Add installation script
* Add systemd service files for chatwoot
* Enable static file serving by rails on prod
* Fix systemd files path | [{'old_path': 'config/environments/production.rb', 'new_path': 'config/environments/production.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -20,8 +20,7 @@ Rails.application.configure do\n \n # Disable serving static files from the `/public` folder by default since\n # Apache or NGINX already handles this.... | Ruby |
e9131ea55862a49994bb582458631179e2277d5b | 542 | 2020-05-06 00:10:56+05:30 | -19,800 | ['5bd7a4c5111f7c425bfb645c93a6c8a3d364b920'] | Feature: Add web push notification permission in frontend (#766)
Add webpush notification permission in frontend
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -101,3 +101,8 @@ CHARGEBEE_API_KEY=\n CHARGEBEE_SITE=\n CHARGEBEE_WEBHOOK_USERNAME=\n CHARGEBEE_WEBHOOK_PASSWORD=\n+\n+## Push Notification\n+## generate a new key value here : https://d3v.one/vapid-key-generator... | Ruby |
b50aeb7ae4eb8b20801e21ae90dc3b2d790d5dc4 | 542 | 2020-05-06 12:40:41+05:30 | -19,800 | ['e9131ea55862a49994bb582458631179e2277d5b'] | Chore: Fix broken conversation mailer layout (#825) | [{'old_path': 'app/views/mailers/conversation_reply_mailer/reply_with_summary.html.erb', 'new_path': 'app/views/mailers/conversation_reply_mailer/reply_with_summary.html.erb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,13 +2,14 @@\n \n <p>You have new messages on your conversation.</p>\n \n-<table>\n <% @mess... | Ruby |
c7120e9637e08e68f3ebf04e7f61d190936eeca6 | 542 | 2020-05-06 13:38:36+05:30 | -19,800 | ['d6d15c8c3c3a97b5726f4be18faa4f9fce42953c'] | Chore: Add translated languages to account settings (#826)
* Add available languages in account settings
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': 'app/controllers/api/v1/widget/base_controller.rb', 'new_path': 'app/controllers/api/v1/widget/base_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -18,6 +18,7 @@ class Api::V1::Widget::BaseController < ApplicationController\n def set_web_widget\n @web_widget = ::Channel::WebWidget... | Ruby |
217f33b2b2a5853ddb783cf2b15af70a6417364c | 603 | 2020-05-06 14:24:20+05:30 | -19,800 | ['c7120e9637e08e68f3ebf04e7f61d190936eeca6'] | Chore: Add ro, fr, pt_BR translation files (#827)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': 'app/javascript/dashboard/i18n/index.js', 'new_path': 'app/javascript/dashboard/i18n/index.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,4 +1,7 @@\n import ca from './locale/ca';\n+import ro from './locale/ro';\n+import fr from './locale/fr';\n+import pt_BR from './locale/pt_BR';\n import de f... | Ruby |
05ea6308f2bbff2c6cc92608d508b1deb022e4b6 | 603 | 2020-05-08 12:13:23+05:30 | -19,800 | ['628e0c8423c8153ca24f89c41d67fa91424832aa'] | Chore: Update ruby and rails versions (#831) | [{'old_path': '.circleci/config.yml', 'new_path': '.circleci/config.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,7 +7,7 @@ defaults: &defaults\n working_directory: ~/build\n docker:\n # specify the version you desire here\n- - image: circleci/ruby:2.7.0-node-browsers\n+ - image: circleci/rub... | Ruby |
f28ec29b8c4c89a85a52ad9c454b342195219ee9 | 542 | 2020-05-09 22:02:43+05:30 | -19,800 | ['05ea6308f2bbff2c6cc92608d508b1deb022e4b6'] | Feature: Customise widget for bot conversations (#834)
* Feature: Customise widget for bot conversations | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -106,3 +106,6 @@ CHARGEBEE_WEBHOOK_PASSWORD=\n ## generate a new key value here : https://d3v.one/vapid-key-generator/\n # VAPID_PUBLIC_KEY=\n # VAPID_PRIVATE_KEY=\n+\n+## Bot Customizations\n+USE_INBOX_AVATAR_FO... | Ruby |
a75f49ddcc57239ca0da88d97fe852ccf8a477dc | 672 | 2020-05-10 16:21:02+05:30 | -19,800 | ['628e0c8423c8153ca24f89c41d67fa91424832aa'] | Bug: Fixed private note being sent to customer (#837) | [{'old_path': 'app/mailers/conversation_reply_mailer.rb', 'new_path': 'app/mailers/conversation_reply_mailer.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -9,8 +9,8 @@ class ConversationReplyMailer < ApplicationMailer\n @contact = @conversation.contact\n @agent = @conversation.assignee\n \n- recap_m... | Ruby |
1a123a4f566e3b39563fee5c0f66a80f47a27693 | 672 | 2020-05-10 16:21:02+05:30 | -19,800 | ['a75f49ddcc57239ca0da88d97fe852ccf8a477dc'] | Spec for private messages not to be included in mails (#837) | [{'old_path': 'spec/mailers/conversation_reply_mailer_spec.rb', 'new_path': 'spec/mailers/conversation_reply_mailer_spec.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -12,15 +12,31 @@ RSpec.describe ConversationReplyMailer, type: :mailer do\n allow(class_instance).to receive(:smtp_config_set_or_developme... | Ruby |
35b2bdd074fc3d1960a816db280f2b82ab53b919 | 672 | 2020-05-10 16:21:02+05:30 | -19,800 | ['1a123a4f566e3b39563fee5c0f66a80f47a27693'] | Removed the un-neccessary attribute from msg create factory | [{'old_path': 'spec/mailers/conversation_reply_mailer_spec.rb', 'new_path': 'spec/mailers/conversation_reply_mailer_spec.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -15,7 +15,7 @@ RSpec.describe ConversationReplyMailer, type: :mailer do\n context 'with all mails' do\n let(:conversation) { create(:c... | Ruby |
76b98cbed432aa331de60128321ca68aa926f69a | 542 | 2020-05-10 22:20:45+05:30 | -19,800 | ['dedbe08a1c7d59fb320b51f15f1cced7f53186f4'] | Bug: Fix inbox.agent_bot nil case (#841) | [{'old_path': 'app/views/widgets/show.html.erb', 'new_path': 'app/views/widgets/show.html.erb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -8,7 +8,9 @@\n window.chatwootWebChannel = {\n avatarUrl: '<%= @web_widget.inbox.avatar_url %>',\n hasAConnectedAgentBot: '<%= @web_widget.inbox.agent_b... | Ruby |
905c93b8f800cb51d919f5372f9f6074cbe0e4a1 | 672 | 2020-05-10 22:40:36+05:30 | -19,800 | ['76b98cbed432aa331de60128321ca68aa926f69a'] | Feature: Installation global config (#839) (#840)
* Renamed concern from Feature to Featurable
* Feature: Installation config (#839)
* Added new model installtion config with corresponding migrations and specs
* Created an installation config yml (key value store model)
* Created a config loader module to load t... | [{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -94,6 +94,8 @@ Rails/UniqueValidationWithoutIndex:\n Exclude:\n - 'app/models/channel/twitter_profile.rb'\n - 'app/models/webhook.rb'\n+RSpec/NamedSubject:\n+ Enabled: false\n AllCops:\n Exclude:\n ... | Ruby |
70341df9b84bfeb1d9cfbefcb171a760da3d86ed | 542 | 2020-05-11 11:40:14+05:30 | -19,800 | ['0d7c1e5e114fed50bba5edbb99068a1dc24cf8e5'] | Bug: Use v2 reports instead of v1 reports (#843) | [{'old_path': 'app/javascript/dashboard/api/ApiClient.js', 'new_path': 'app/javascript/dashboard/api/ApiClient.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,10 +1,10 @@\n /* global axios */\n \n-const API_VERSION = `/api/v1`;\n+const DEFAULT_API_VERSION = 'v1';\n \n class ApiClient {\n constructor(resourc... | Ruby |
8859880e55d50cc0124f5edbdbafb32ddf7fd96e | 672 | 2020-05-11 19:00:33+05:30 | -19,800 | ['6e0f02a38be96b6521498e9a8b28030603e4d9e9'] | Feature: Global Config helper (#844) (#845)
* Added a global config helper to easily access installation/global configs
* this will fetch the keys from cache with fallback to DB on cache miss
* ability to query multiple keys simultaneously
* interface to delete the existing global config cache
* Added tests ... | [{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -30,6 +30,7 @@ Style/GlobalVars:\n Exclude:\n - 'config/initializers/redis.rb'\n - 'lib/redis/alfred.rb'\n+ - 'lib/global_config.rb'\n Metrics/BlockLength:\n Exclude:\n - spec/**/*\n"}, {'old_p... | Ruby |
c74b5c21d7a822d66bb59d10a2c10246b1bed2eb | 603 | 2020-05-11 23:07:22+05:30 | -19,800 | ['8859880e55d50cc0124f5edbdbafb32ddf7fd96e'] | Feature: Introduce Super Admins (#705)
* Feature: Introduce Super Admins
- added new devise model for super user
- added administrate gem
- sample dashboards for users and accounts
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -73,10 +73,6 @@ RAILS_LOG_TO_STDOUT=true\n LOG_LEVEL=info\n LOG_SIZE=500\n \n-# Credentials to access sidekiq dashboard in production\n-SIDEKIQ_AUTH_USERNAME=\n-SIDEKIQ_AUTH_PASSWORD=\n-\n ### This environment va... | Ruby |
f819bc0f33e31bf248c16eef89c2751d08637e91 | 542 | 2020-05-12 01:31:40+05:30 | -19,800 | ['c74b5c21d7a822d66bb59d10a2c10246b1bed2eb'] | Chore: Use installation config in frontend (#847)
* Use installation config in widget
* Add configuration for installation in UI
* Add config for mailer
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': 'app/javascript/dashboard/components/layout/Sidebar.vue', 'new_path': 'app/javascript/dashboard/components/layout/Sidebar.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@\n <aside class="sidebar animated shrink columns">\n <div class="logo">\n <router-link :to="dashboardPat... | Ruby |
d219b0a45ee6a6546141a54a77aaaed4d8ae4f63 | 542 | 2020-05-12 12:45:28+05:30 | -19,800 | ['f819bc0f33e31bf248c16eef89c2751d08637e91'] | Chore: Add an option to toggle web manifest (#848) | [{'old_path': 'app/controllers/dashboard_controller.rb', 'new_path': 'app/controllers/dashboard_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,5 +1,21 @@\n class DashboardController < ActionController::Base\n+ before_action :set_global_config\n+\n layout 'vueapp'\n \n def index; end\n+\n+ pr... | Ruby |
e6bf81caf4e2a67d5f376910e0520f79376500aa | 565 | 2020-05-14 11:42:53+05:30 | 25,200 | ['005f332776c945eefcfc358a87695b7ed36dac76'] | Bug: Fix widget icon alignment in Firefox (#857) | [{'old_path': 'app/javascript/widget/components/ChatAttachment.vue', 'new_path': 'app/javascript/widget/components/ChatAttachment.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -51,7 +51,6 @@ export default {\n border: 0;\n cursor: pointer;\n position: relative;\n- padding-right: $space-smaller;\n wid... | Ruby |
20f39caa42282c73b13e2309f83ea829a85def62 | 603 | 2020-05-14 22:51:07+05:30 | -19,800 | ['1108446974e21fab553fe9ecfec342005807abfb'] | Chore: Twitter Integration house cleaning (#855)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> | [{'old_path': 'Gemfile', 'new_path': 'Gemfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -64,7 +64,8 @@ gem 'facebook-messenger'\n gem 'telegram-bot-ruby'\n gem 'twilio-ruby', '~> 5.32.0'\n # twitty will handle subscription of twitter account events\n-gem 'twitty', git: 'https://github.com/chatwoot/twitty'\n+#... | Ruby |
e6aa851987547a7fa37aaf6ae7765d9a99ac0d12 | 603 | 2020-05-14 22:51:51+05:30 | -19,800 | ['20f39caa42282c73b13e2309f83ea829a85def62'] | Chore: Add Account Users to Admin Panel (#859)
- Show errors on login page
- Dashboard for admin panel | [{'old_path': None, 'new_path': 'app/controllers/super_admin/account_users_controller.rb', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,44 @@\n+class SuperAdmin::AccountUsersController < SuperAdmin::ApplicationController\n+ # Overwrite any of the RESTful controller actions to implement custom behavior\n+ # ... | Ruby |
467fcda6fc79b13d073ec4200b9fc84a0ead90fc | 542 | 2020-05-15 12:15:28+05:30 | -19,800 | ['e6aa851987547a7fa37aaf6ae7765d9a99ac0d12'] | Chore: Add docs for push notifications env (#865) | [{'old_path': 'docs/development/project-setup/environment-variables.md', 'new_path': 'docs/development/project-setup/environment-variables.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -114,3 +114,24 @@ LOG_LEVEL=\n # value in megabytes\n LOG_SIZE= 1024\n ```\n+\n+### Push Notification\n+\n+Chatwoot uses web p... | Ruby |
2e8cd59a0645b86f7119f32cab70fa9d8245dc5e | 603 | 2020-05-16 18:07:19+05:30 | -19,800 | ['467fcda6fc79b13d073ec4200b9fc84a0ead90fc'] | Add new translations (#862)
* New translations agentMgmt.json (Dutch)
* New translations login.json (Dutch)
* New translations settings.json (French)
* New translations en.json (French)
* New translations en.json (Arabic)
* New translations en.json (Greek)
* New translations settings.json (Portuguese... | [{'old_path': 'app/javascript/dashboard/i18n/locale/el/settings.json', 'new_path': 'app/javascript/dashboard/i18n/locale/el/settings.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -26,9 +26,19 @@\n "TITLE": "Ειδοποιήσεις Email",\n "NOTE": "Ενημέρωστε την προτίμηση για ειδοποιήσεις με email εδώ... | Ruby |
59f4dd7ebe6b9cba0bddaebc7da1507fd6568d53 | 542 | 2020-05-17 16:15:53+05:30 | -19,800 | ['2e8cd59a0645b86f7119f32cab70fa9d8245dc5e'] | Feature: Introduce locale in web-widget SDK (#871)
* Introduce setLocale in SDK
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': 'app/controllers/application_controller.rb', 'new_path': 'app/controllers/application_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,7 +29,11 @@ class ApplicationController < ActionController::Base\n end\n \n def switch_locale(account)\n- I18n.locale = (I18n.available_locales... | Ruby |
246d0b407fb8f34e22d57afe414487337cd808ef | 542 | 2020-05-17 21:07:45+05:30 | -19,800 | ['59f4dd7ebe6b9cba0bddaebc7da1507fd6568d53'] | Chore: UI Cleanup in modals (#873)
* Chore: UI Cleanup in modals
* Fix review comments | [{'old_path': 'app/javascript/dashboard/assets/images/agent.svg', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': '@@ -1,25 +0,0 @@\n-<?xml version="1.0" encoding="UTF-8"?>\n-<svg width="505px" height="506px" viewBox="0 0 505 506" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.... | Ruby |
b7129785c60f096097a8d98d3e35d9e379ab8096 | 542 | 2020-05-17 22:49:45+05:30 | -19,800 | ['246d0b407fb8f34e22d57afe414487337cd808ef'] | Chore: View form responses as user messages (#876)
* Chore: View form responses as user messages | [{'old_path': None, 'new_path': 'app/javascript/shared/helpers/MessageTypeHelper.js', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,3 @@\n+export const isAFormMessage = message => message.content_type === 'form';\n+export const isASubmittedFormMessage = (message = {}) =>\n+ isAFormMessage(message) && !!messag... | Ruby |
6e92d9be9ef5b110d3b09dd1bdadf60704f323a3 | 542 | 2020-05-17 23:44:50+05:30 | -19,800 | ['b7129785c60f096097a8d98d3e35d9e379ab8096'] | Bug: Fix Facebook v7.0 API issues (#863)
* Fix v7.0 API issues
Co-authored-by: Sojan <sojan@pepalo.com> | [{'old_path': 'Gemfile.lock', 'new_path': 'Gemfile.lock', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -96,16 +96,16 @@ GEM\n autoprefixer-rails (9.7.6)\n execjs\n aws-eventstream (1.1.0)\n- aws-partitions (1.310.0)\n- aws-sdk-core (3.94.1)\n+ aws-partitions (1.315.0)\n+ aws-sdk-core (3.9... | Ruby |
3f5ce2ddbf66beff9beb7be121ff7f0f975edb5a | 542 | 2020-05-18 15:32:26+05:30 | -19,800 | ['6e92d9be9ef5b110d3b09dd1bdadf60704f323a3'] | Bug: Fix autoload_paths for facebook bot (#877)
* Fix autoload_paths for facebook bot | [{'old_path': 'app/bot/bot.rb', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': '@@ -1,19 +0,0 @@\n-# app/bot/facebook_bot.rb\n-require \'facebook/messenger\'\n-include Facebook::Messenger\n-\n-Bot.on :message do |message|\n- response = ::Integrations::Facebook::MessageParser.new(message)\n- ::Integra... | Ruby |
8af200ad209cd35a6a4d85246d21691efe193d47 | 542 | 2020-05-19 19:05:10+05:30 | -19,800 | ['3f5ce2ddbf66beff9beb7be121ff7f0f975edb5a'] | Fix missing translations, enable dutch language (#878)
* Fix missing translations, enable dutch language | [{'old_path': 'Gemfile.lock', 'new_path': 'Gemfile.lock', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -18,56 +18,56 @@ GEM\n specs:\n action-cable-testing (0.6.1)\n actioncable (>= 5.0)\n- actioncable (6.0.3)\n- actionpack (= 6.0.3)\n+ actioncable (6.0.3.1)\n+ actionpack (= 6.0.3.1)\n ... | Ruby |
f6a9f791cfa87411ce184ee14ed97c05d25a152e | 603 | 2020-05-20 20:02:28+05:30 | -19,800 | ['8af200ad209cd35a6a4d85246d21691efe193d47'] | Chore: Configure Letter opener with environment variable (#880) | [{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -105,3 +105,7 @@ CHARGEBEE_WEBHOOK_PASSWORD=\n \n ## Bot Customizations\n USE_INBOX_AVATAR_FOR_BOT=true\n+\n+## Development Only Config\n+# if you want to use letter_opener for local emails\n+# LETTER_OPENER=true... | Ruby |
00093fa40869ceaa2609b586c7bebb9730e2c9ae | 672 | 2020-05-22 17:58:08+05:30 | -19,800 | ['f6a9f791cfa87411ce184ee14ed97c05d25a152e'] | Fixed rspec due to unescaped html check for user name (#887) (#888)
* Fixed the flaky failure in rspec for super admin user controller due to unescaped user name check | [{'old_path': 'spec/controllers/super_admin/users_controller_spec.rb', 'new_path': 'spec/controllers/super_admin/users_controller_spec.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -19,7 +19,7 @@ RSpec.describe 'Super Admin Users API', type: :request do\n get '/super_admin/users'\n expect(respo... | Ruby |
11b4b4ea3f9ebdb8c5b149f9b96d8e45a3921e11 | 672 | 2020-05-22 18:07:06+05:30 | -19,800 | ['00093fa40869ceaa2609b586c7bebb9730e2c9ae'] | Chore: Parse quoted text in incoming emails (#883) (#884)
* Chore: Parse quoted text in incoming emails (#883)
* Parsed the quoted text and replies in incoming emails and store them separately
* Did this parsing for plain text and html part of emails
* In the chat window, we will only show the parsed reply alone
... | [{'old_path': 'app/mailboxes/conversation_mailbox.rb', 'new_path': 'app/mailboxes/conversation_mailbox.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -21,7 +21,7 @@ class ConversationMailbox < ApplicationMailbox\n @message = @conversation.messages.create(\n account_id: @conversation.account_id,\n ... | Ruby |
6230f4d7965ce45c3eb7fd4e8532e0df3dcda27e | 672 | 2020-05-22 18:14:18+05:30 | -19,800 | ['11b4b4ea3f9ebdb8c5b149f9b96d8e45a3921e11'] | Enhancement: Threaded email replies for a conversation (#885) (#886)
* Added custom Message-ID and In-Reply-To headers for conversation reply emails
* Added new global config for the default domain (This is used in the above headers)
* Added migration to run the config loader to load the new global config value
* T... | [{'old_path': 'app/mailers/conversation_reply_mailer.rb', 'new_path': 'app/mailers/conversation_reply_mailer.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,6 +6,7 @@ class ConversationReplyMailer < ApplicationMailer\n return unless smtp_config_set_or_development?\n \n @conversation = conversation\n+ ... | Ruby |
8ccc00b5ba67de8c0c51c7b9b82cc0e4c0ca0761 | 84 | 2020-05-22 19:59:26+05:30 | -7,200 | ['6230f4d7965ce45c3eb7fd4e8532e0df3dcda27e'] | Add crowdin badge on README.md (#889) | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,8 +19,8 @@ ___\n <a href="https://hub.docker.com/r/chatwoot/chatwoot/"><img src="https://img.shields.io/docker/cloud/build/chatwoot/chatwoot" alt="Docker Build Badge"></a>\n <img src="https://img.shields.io/git... | Ruby |
d8d14fc4a4180673d62e273b806a19c1d2bc14be | 603 | 2020-05-24 22:44:26+05:30 | -19,800 | ['e49a200ee0e9a4d3eccf75eb90522bd753379c01'] | Feature: Rewamp super admin dashboard (#882) | [{'old_path': '.scss-lint.yml', 'new_path': '.scss-lint.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -177,6 +177,8 @@ linters:\n allow_element_with_attribute: false\n allow_element_with_class: false\n allow_element_with_id: false\n+ exclude:\n+ - 'app/assets/stylesheets/administrate/compo... | Ruby |
b1aab228ae609485847ceaa0dd0ffacab71978d8 | 408 | 2020-05-26 17:43:59+05:30 | -10,800 | ['d8d14fc4a4180673d62e273b806a19c1d2bc14be'] | Feature: Ability to mute contacts (#891)
fixes: #867 | [{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -12,6 +12,8 @@ Layout/LineLength:\n Max: 150\n Metrics/ClassLength:\n Max: 125\n+ Exclude:\n+ - 'app/models/conversation.rb'\n RSpec/ExampleLength:\n Max: 25\n Style/Documentation:\n"}, {'old_path': 'ap... | Ruby |
b7a583b2c4b6760ed14716915ccd892697ea449a | 603 | 2020-05-26 22:38:48+05:30 | -19,800 | ['b1aab228ae609485847ceaa0dd0ffacab71978d8'] | Feature: Ability to switch between multiple accounts (#881)
* Feature: Ability to switch between multiple accounts
* Fix rubocop
* Fix assigned inboxes
* fix auth json
* Add account switcher in UI
* fix ordering on administrate
* Add switch accounts to sidebar
* add account id
* Fix schema.rb t... | [{'old_path': 'app/builders/account_builder.rb', 'new_path': 'app/builders/account_builder.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -38,6 +38,7 @@ class AccountBuilder\n \n def create_account\n @account = Account.create!(name: @account_name)\n+ Current.account = @account\n end\n \n def create... | Ruby |
efc59bb43fa9e09dd08758f112c0c5bc5e4be53c | 542 | 2020-05-26 23:36:42+05:30 | -19,800 | ['b7a583b2c4b6760ed14716915ccd892697ea449a'] | Bug: Fix account_id in URLs (#894)
* Bug: Fix account_id in URLs
* Fix accountMixin specs | [{'old_path': 'app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue', 'new_path': 'app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -75,6 +75,7 @@ export default {\n inboxesList: 'inboxes/getInboxes',\n ... | Ruby |
10a1758261d96fbc2e0ad2474aa9185a6a777729 | 565 | 2020-05-29 12:37:18+05:30 | 25,200 | ['a9d93b750c6af63ac7e63bbf767e1179acb78d1d'] | Bug: Fix false positive in #toggleAgentTypingStatus spec (#899) | [{'old_path': 'app/javascript/widget/store/modules/specs/conversation/mutations.spec.js', 'new_path': 'app/javascript/widget/store/modules/specs/conversation/mutations.spec.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -101,7 +101,7 @@ describe('#mutations', () => {\n });\n \n it('sets isAgentTyping fl... | Ruby |
ec197b077d6da658e21ea16f1e152da25c7c8f86 | 542 | 2020-05-29 14:53:27+05:30 | -19,800 | ['10a1758261d96fbc2e0ad2474aa9185a6a777729'] | Chore: Add db migrate to Heroku release phase (#901) | [{'old_path': 'Procfile', 'new_path': 'Procfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,2 +1,3 @@\n+release: bundle exec rake db:migrate\n web: bin/rails server -p $PORT -e $RAILS_ENV\n worker: bundle exec sidekiq -C config/sidekiq.yml\n'}] | Ruby |
47ec7ad7c917dbb5a3e5c0e81b2d629036605cc3 | 542 | 2020-05-30 17:28:00+05:30 | -19,800 | ['ec197b077d6da658e21ea16f1e152da25c7c8f86'] | Feature: Ability to customise widget color (#903)
- Use Chrome style color-picker | [{'old_path': 'app/javascript/dashboard/assets/scss/_woot.scss', 'new_path': 'app/javascript/dashboard/assets/scss/_woot.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -5,7 +5,6 @@\n @import 'foundation-custom';\n @import 'widgets/billing';\n @import 'widgets/buttons';\n-@import 'widgets/colorpicker';\n @impo... | Ruby |
884a1c5971fa6d4cdddbd42c03dc322902f2da2f | 542 | 2020-05-31 16:16:22+05:30 | -19,800 | ['47ec7ad7c917dbb5a3e5c0e81b2d629036605cc3'] | Chore: Add an option to upload a business logo to inbox (#905)
Chore: Add an option to upload a business logo to inbox | [{'old_path': 'app/javascript/dashboard/components/index.js', 'new_path': 'app/javascript/dashboard/components/index.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,10 +1,11 @@\n /* eslint no-plusplus: 0 */\n /* eslint-env browser */\n-\n+import AvatarUploader from './widgets/forms/AvatarUploader.vue';\n impo... | Ruby |
586c616ae34ea0a540e29fa1494cbeced94cef60 | 542 | 2020-05-31 16:35:10+05:30 | -19,800 | ['884a1c5971fa6d4cdddbd42c03dc322902f2da2f'] | Bug: Render header title and tagline as HTML (#906)
* Render header title and tagline as HTML | [{'old_path': 'app/javascript/widget/components/ChatHeader.vue', 'new_path': 'app/javascript/widget/components/ChatHeader.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,9 +2,7 @@\n <header class="header-collapsed">\n <div class="header-branding">\n <img v-if="avatarUrl" :src="avatarUrl" alt="ava... | Ruby |
d4783db6fd738274cb5f6e227d57c431a5902feb | 541 | 2020-05-31 21:49:28+05:30 | -19,800 | ['586c616ae34ea0a540e29fa1494cbeced94cef60'] | Chore: Update app logo, add FRONTEND_URL env var (#910)
Chore: Update app logo, add FRONTEND_URL env var | [{'old_path': 'app.json', 'new_path': 'app.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,7 +3,7 @@\n "description": "Chatwoot is a customer support tool for instant messaging channels",\n "website": "https://www.chatwoot.com/",\n "repository": "https://github.com/chatwoot/chatwoot",\n- "logo": "dat... | Ruby |
8c52a3a9531372f642d0be1ec5cbd283b98129d4 | 603 | 2020-05-31 23:10:20+05:30 | -19,800 | ['d4783db6fd738274cb5f6e227d57c431a5902feb'] | Chore: Remove duplication of user JBuilder (#911)
* Chore: Reduce duplication of user JBuilder | [{'old_path': 'app/controllers/api/v1/accounts/agents_controller.rb', 'new_path': 'app/controllers/api/v1/accounts/agents_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -17,11 +17,11 @@ class Api::V1::Accounts::AgentsController < Api::BaseController\n def update\n @agent.update!(agent_params.ex... | Ruby |
f78df91dd2edaf580ed3ebc79dfae96eff26fdaa | 541 | 2020-06-02 22:59:02+05:30 | -19,800 | ['8c52a3a9531372f642d0be1ec5cbd283b98129d4'] | Chore: Contact Sidebar, conversation cleanup (#908)
- Update sidebar design
- Move every contact data to contacts module
- Revert go to next conversation feature
- Fix issues with new conversation in action cable
- Escape HTML content
- Broadcast event when conversation.contact changes.
Co-authored-by: Sojan <... | [{'old_path': 'app/javascript/dashboard/assets/scss/plugins/_multiselect.scss', 'new_path': 'app/javascript/dashboard/assets/scss/plugins/_multiselect.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -91,7 +91,6 @@\n }\n \n .sidebar-labels-wrap {\n-\n &.has-edited,\n &:hover {\n .multiselect {\n@@ -108,... | Ruby |