Search is not available for this dataset
hash
string
author
int32
committer_date
string
timezone
int64
parents
string
message
string
changes
string
language
string
cb71f5752c445c28548a851bd19eab0a3dfb9870
407
2019-11-26 12:13:22+05:30
-3,600
['0ba001427e25d83efb951d6e2597205c24cff20f']
Fix docker image by adding bundler (#288) fixes #289
[{'old_path': 'docker/Dockerfile', 'new_path': 'docker/Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -12,6 +12,7 @@ RUN apt-get update \\\n && echo 'deb https://dl.yarnpkg.com/debian stable main' > /etc/apt/sources.list.d/yarn.list \\\n && apt-get update \\\n && apt-get -qq -y install nodej...
Ruby
ddae36a4a3d65e6b5b24ee835243eaf3ee1d8d17
603
2019-11-26 13:37:28+05:30
-19,800
['cb71f5752c445c28548a851bd19eab0a3dfb9870']
[Chore] - Fix docker build (#290) fixes #289
[{'old_path': 'app/assets/config/manifest.js', 'new_path': 'app/assets/config/manifest.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,3 +1 @@\n //= link_tree ../images\n-//= link_directory ../javascripts .js\n-//= link_directory ../stylesheets .css\n'}, {'old_path': 'app/assets/javascripts/application.js', '...
Ruby
97a814cb7eae6e282ebe6ed6e06b87f13fe6e021
603
2019-11-26 14:56:09+05:30
-19,800
['ddae36a4a3d65e6b5b24ee835243eaf3ee1d8d17']
[Chore] Add docker build status to repo #287 ref: #287
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -16,6 +16,7 @@ ___\n <p align="center">\n <a href="https://codeclimate.com/github/chatwoot/chatwoot/maintainability"><img src="https://api.codeclimate.com/v1/badges/80f9e1a7c72d186289ad/maintainability" alt="Maintain...
Ruby
274ad381cb1e8a366999afbb152481b371bfd0e9
656
2019-11-26 22:35:26+05:30
-19,800
['97a814cb7eae6e282ebe6ed6e06b87f13fe6e021']
Makes widget header expand and collapse by messages size (#293)
[{'old_path': None, 'new_path': 'app/javascript/widget/components/ChatHeader.vue', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,44 @@\n+<template>\n+ <header class="header-collapsed" :style="{ background: widgetColor }">\n+ <div>\n+ <h2 class="title">\n+ {{ title }}\n+ </h2>\n+ </div>\...
Ruby
cbf2d27b6b7891b6a65645275cd7182189688d2e
603
2019-11-27 09:01:39+05:30
-19,800
['274ad381cb1e8a366999afbb152481b371bfd0e9']
[BugFix] Fix Users not deletable because of foreign key reference (#300) Fixes #297
[{'old_path': 'app/models/user.rb', 'new_path': 'app/models/user.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -24,6 +24,7 @@ class User < ApplicationRecord\n \n belongs_to :account\n belongs_to :inviter, class_name: 'User', required: false\n+ has_many :invitees, class_name: 'User', foreign_key: 'inviter_...
Ruby
17eed16dfedfb2476a433dcbdd66291fc27cc56f
603
2019-11-27 09:07:17+05:30
-19,800
['cbf2d27b6b7891b6a65645275cd7182189688d2e']
Add a pull request template (#305)
[{'old_path': None, 'new_path': '.github/PULL_REQUEST_TEMPLATE.md', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,32 @@\n+# Pull Request Template\n+\n+## Description\n+\n+Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies ...
Ruby
c36b4279ace00b036fc2f89832374e9adff4bad4
603
2019-11-27 09:12:17+05:30
-19,800
['17eed16dfedfb2476a433dcbdd66291fc27cc56f']
[Bugfix]Fixes agent cannot be removed from inbox #18 (#304) Closes #18
[{'old_path': 'app/controllers/api/v1/inbox_members_controller.rb', 'new_path': 'app/controllers/api/v1/inbox_members_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,7 +10,8 @@ module Api\n begin\n update_agents_list\n head :ok\n- rescue StandardError\n+ ...
Ruby
913172c6880f6d4697c6c730c4365a21fe00ad0d
603
2019-11-27 09:18:51+05:30
-19,800
['c36b4279ace00b036fc2f89832374e9adff4bad4']
Enhancement request template (#301) enhancement request template
[{'old_path': None, 'new_path': '.github/ISSUE_TEMPLATE/enhancement_request.md', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,20 @@\n+---\n+name: Enhancement request\n+about: Suggest any enhancements for this project\n+title: ''\n+labels: ''\n+assignees: ''\n+\n+---\n+\n+**Is your enhancement request related ...
Ruby
ded8f33fc8d38bd2b5d3575f966c6099a181ec02
542
2019-11-27 10:12:57+05:30
-19,800
['913172c6880f6d4697c6c730c4365a21fe00ad0d']
Fix private note shown to user in widget (#308) fixes #306
[{'old_path': 'app/javascript/widget/components/ChatMessage.vue', 'new_path': 'app/javascript/widget/components/ChatMessage.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,10 +1,6 @@\n <template>\n <UserMessage v-if="isUserMessage" :message="message.content" />\n- <AgentMessage\n- v-else\n- :agent-n...
Ruby
7c65142fcdfd03a3e305d2c417d9440778644fec
656
2019-11-27 11:45:33+05:30
-19,800
['ded8f33fc8d38bd2b5d3575f966c6099a181ec02']
Adjust space between message bubbles in widget (#309)
[{'old_path': 'app/javascript/widget/assets/scss/woot.scss', 'new_path': 'app/javascript/widget/assets/scss/woot.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,8 +1,8 @@\n+@import 'reset';\n @import 'variables';\n @import 'buttons';\n @import 'mixins';\n @import 'forms';\n-@import 'reset';\n \n html,\n bod...
Ruby
3c01f98a0b56d94213d7616fc343db60cdf50019
542
2019-11-27 12:42:00+05:30
-19,800
['7c65142fcdfd03a3e305d2c417d9440778644fec']
Fix breaking migrations, revert migrations to 6.0 (#314) Closes #313
[{'old_path': 'db/migrate/20190819010457_create_channels.rb', 'new_path': 'db/migrate/20190819010457_create_channels.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,4 @@\n-class CreateChannels < ActiveRecord::Migration[6.1]\n+class CreateChannels < ActiveRecord::Migration[6.0]\n def change\n create...
Ruby
6c653e9ef3d09159594649e94730d41b60b63855
672
2019-11-27 14:06:39+05:30
-19,800
['3c01f98a0b56d94213d7616fc343db60cdf50019']
[#311] Added link to env variables documentation (#312) * Added link to env variables documentation right below the Heroku one click deploy button so that people dont get confused with broken app on deploying without the env variables set correctly
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -43,6 +43,8 @@ Deploying chatwoot to heroku, it's a breeze. It's as simple as clicking this but\n \n [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/chatwo...
Ruby
6e911e69f8b4748e033f7c1f014d7984bc22c27f
542
2019-11-28 11:03:01+05:30
-19,800
['6c653e9ef3d09159594649e94730d41b60b63855']
Update font family to make design consistent in all platforms (#318) * Add inter font, remove modal header bg * Remove unnecessary font files * Fix codeclimate issues, remove letter-spacing attribute
[{'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': '@@ -62,7 +62,7 @@ $black: #000000;\n $white: #fff;\n $body-background: $white;\n $body-font-color: $color-body;\n-$...
Ruby
dab21915b46551588cb6b5963e63d7e0d2469552
603
2019-11-28 13:36:29+05:30
-19,800
['6e911e69f8b4748e033f7c1f014d7984bc22c27f']
Fix rails port getting toggled from 3000 to 5000 (#319) Fix rails port getting toggled from 3000 to 5000 when using foreman
[{'old_path': 'Procfile.dev', 'new_path': 'Procfile.dev', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,2 +1,2 @@\n-backend: bin/rails s -p ${PORT:=3000}\n+backend: bin/rails s -p 3000\n frontend: bin/webpack-dev-server\n\\ No newline at end of file\n'}, {'old_path': 'docker/Procfile.docker.dev', 'new_path': 'do...
Ruby
8ea74a21b0afe688c20b45d7eeafdfaec8d2d999
542
2019-11-28 23:34:21+05:30
-19,800
['dab21915b46551588cb6b5963e63d7e0d2469552']
Fix docker file to use rails_env=production on precompile (#315) * Fix docker file to use rails_env=production on precompile * Fix docker file for prod deployment
[{'old_path': None, 'new_path': '.dockerignore', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,11 @@\n+.bundle\n+.env\n+.env.*\n+public/system\n+public/assets\n+public/packs\n+node_modules\n+vendor/bundle\n+.DS_Store\n+*.swp\n+*~\n'}, {'old_path': 'docker-compose.yaml', 'new_path': 'docker-compose.yaml', 'type...
Ruby
070f762293e2f5e8539f5dfac52e8755864e0e1f
542
2019-11-29 00:57:49+05:30
-19,800
['8ea74a21b0afe688c20b45d7eeafdfaec8d2d999']
Updated docs for docker configuration (#322)
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,5 @@\n <p align="center">\n- <img src=".github/woot-logo.svg" alt="Woo-logo" width="240">\n+ <img src="https://storage.googleapis.com/chatwoot-assets/woot-logo.svg" alt="Woot-logo" width="240">\n \n <div al...
Ruby
a3662091c797d86a9612396396e66121f8082ec7
542
2019-11-29 17:42:35+05:30
-19,800
['070f762293e2f5e8539f5dfac52e8755864e0e1f']
Add an intermediate pending state for widget messages (#323) * Add an intermediate pending state for widget messages * Remove unnecessary setTimeout * Rename method
[{'old_path': 'app/javascript/widget/components/ChatMessage.vue', 'new_path': 'app/javascript/widget/components/ChatMessage.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,9 @@\n <template>\n- <UserMessage v-if="isUserMessage" :message="message.content" />\n+ <UserMessage\n+ v-if="isUserMessage"\n+...
Ruby
60e96f446e610478962038223f4a579ad827d966
542
2019-11-30 17:33:42+05:30
-19,800
['a3662091c797d86a9612396396e66121f8082ec7']
[Enhancement] Add CopyToClipboard action in code component (#329) * Add CopyToClipboard action in websiteWidgetCode component * Fix codeclimate issues
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -17,6 +17,9 @@ Metrics/BlockLength:\n - spec/**/*\n Style/ClassAndModuleChildren:\n EnforcedStyle: compact\n+RSpec/NestedGroups:\n+ Enabled: true\n+ Max: 4\n AllCops:\n Exclude:\n - db/*\n'}, {'old_...
Ruby
c08074b98199177c10273bff5d64cbb50580507a
501
2019-11-30 19:09:55+05:30
-19,800
['60e96f446e610478962038223f4a579ad827d966']
Annotations (#327) * Add annotate gem to the project * Annotate models, fixtures, factories and model_specs * Keep annotations only in Models * Remove unwanted changes in model specs * Exclude auto_annotate_models from rubocop
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,3 +29,4 @@ AllCops:\n - public/**/*\n - vendor/**/*\n - node_modules/**/*\n+ - lib/tasks/auto_annotate_models.rake\n'}, {'old_path': 'Gemfile', 'new_path': 'Gemfile', 'type': <ModificationType....
Ruby
84799fd0a1763bfe36ffecf379fc23c95c8b0107
611
2019-12-01 10:16:51+05:30
-19,800
['c08074b98199177c10273bff5d64cbb50580507a']
[#247] Filters conversation by status and paginate conversations (#284) * [#247] Filters conversation by status * Fixes conversation finder specs * [#248] Paginates conversation * Use method name in description * Move page to default param, add filters on frontend * Fix code climate issues
[{'old_path': 'app/controllers/api/v1/conversations_controller.rb', 'new_path': 'app/controllers/api/v1/conversations_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,7 +11,6 @@ class Api::V1::ConversationsController < Api::BaseController\n result = conversation_finder.perform\n @conversati...
Ruby
330e8625d3e7a2ecd32112a0555120c0a18b7ca0
414
2019-12-01 15:42:15+05:30
-19,800
['84799fd0a1763bfe36ffecf379fc23c95c8b0107']
Update user model specs (#334)
[{'old_path': 'app/models/user.rb', 'new_path': 'app/models/user.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -60,10 +60,10 @@ class User < ApplicationRecord\n # Used by the actionCable/PubSub Service we use for real time communications\n has_secure_token :pubsub_token\n \n- validates_uniqueness_of :emai...
Ruby
829cb4da577925a4db594862e3ad2289646583f2
542
2019-12-01 22:53:39+05:30
-19,800
['330e8625d3e7a2ecd32112a0555120c0a18b7ca0']
Add docs to add a website channel (#337)
[{'old_path': 'app/javascript/dashboard/i18n/locale/en/inboxMgmt.json', 'new_path': 'app/javascript/dashboard/i18n/locale/en/inboxMgmt.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n {\n "INBOX_MGMT": {\n "HEADER": "Inboxes",\n- "SIDEBAR_TXT": "<p><b>Inbox</b></p> <p> When you connect a...
Ruby
6ca403542d25cf719347038af5ca5a44aa2065b2
603
2019-12-02 08:57:11+05:30
-19,800
['829cb4da577925a4db594862e3ad2289646583f2']
Chore: Setup test coverage in codeclimate [#332] (#333)
[{'old_path': '.circleci/config.yml', 'new_path': '.circleci/config.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,8 +3,8 @@\n # Check https://circleci.com/docs/2.0/language-ruby/ for more details\n #\n version: 2\n-jobs:\n- build:\n+defaults: &defaults\n+ working_directory: ~/build\n docker:\n # sp...
Ruby
c758c13ffbb9a4aab98aaeabcffcbc6034e55d0d
414
2019-12-03 10:09:45+05:30
-19,800
['6ca403542d25cf719347038af5ca5a44aa2065b2']
Add Account Model specs (#341)
[{'old_path': 'app/models/account.rb', 'new_path': 'app/models/account.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,7 +3,7 @@\n # Table name: accounts\n #\n # id :integer not null, primary key\n-# name :string\n+# name :string not null\n # created_at :datetime ...
Ruby
a8e8416d4807934cfe55572202f0fba178250026
603
2019-12-03 19:26:38+05:30
-19,800
['c758c13ffbb9a4aab98aaeabcffcbc6034e55d0d']
Chore: Cache gemfiles in circle builds [#338] (#343)
[{'old_path': '.circleci/config.yml', 'new_path': '.circleci/config.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -39,15 +39,14 @@ jobs:\n \n - restore_cache:\n keys:\n- # when lock file changes, use increasingly general patterns to restore cache\n- - v1-gem-cache-{{ arch...
Ruby
6a2f4e6673a75754bb3a716c89c4cd7a0e078029
603
2019-12-03 22:54:08+05:30
-19,800
['a8e8416d4807934cfe55572202f0fba178250026']
Chore: Ability to configure Mailer sender emails [#339] (#342) * Chore: Ability to configure Mailer sender emails [#339] fixes : #339 fixes : #330 * update the documentation
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,7 +4,7 @@ FB_APP_SECRET=\n FB_APP_ID=\n \n #mail\n-\n+MAILER_SENDER_EMAIL=\n SMTP_ADDRESS=\n SMTP_USERNAME=\n SMTP_PASSWORD=\n'}, {'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationT...
Ruby
ff5c26a388e5d6b598bba51bdad3c73d00a2a87b
324
2019-12-04 22:38:53+05:30
-3,600
['6a2f4e6673a75754bb3a716c89c4cd7a0e078029']
Fix BILLING_ENABLED in example .env file (#345) The ENABLE_BILLING env var is not used in the chatwoot code base. Instead, the BILLING_ENABLED is used to enable billing.
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,7 +23,7 @@ AWS_REGION=\n SENTRY_DSN=\n \n #### This environment variables are only required in hosted version which has billing\n-ENABLE_BILLING=\n+BILLING_ENABLED=\n ## chargebee settings\n CHARGEBEE_API_KE...
Ruby
3a1c0aef07d00b21804f5b57a5428d66c7a5aa41
414
2019-12-05 13:20:04+05:30
-19,800
['ff5c26a388e5d6b598bba51bdad3c73d00a2a87b']
Add specs for model facebook_page (#346)
[{'old_path': 'app/models/channel/facebook_page.rb', 'new_path': 'app/models/channel/facebook_page.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -15,6 +15,7 @@\n # Indexes\n #\n # index_channel_facebook_pages_on_page_id (page_id)\n+# index_channel_facebook_pages_on_page_id_and_account_id (pa...
Ruby
d8d4deea2f5d5493510abd93075647a944660fcf
542
2019-12-06 16:50:06+05:30
-19,800
['3f403c9e7aed6ef3f03d93c7589fe9f6237aa611']
Remove unnecessary slash in curl command (#349) * Remove unnecessary slash in curl command * bundle update * Fix rubocop errors
[{'old_path': 'Gemfile.lock', 'new_path': 'Gemfile.lock', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -68,17 +68,17 @@ GEM\n ast (2.4.0)\n attr_extras (6.2.1)\n aws-eventstream (1.0.3)\n- aws-partitions (1.244.0)\n- aws-sdk-core (3.81.0)\n+ aws-partitions (1.251.0)\n+ aws-sdk-core (3.84.0)...
Ruby
0a5d6c0de9a39de87215dd8662c35e3e8f5b2490
603
2019-12-09 10:19:09+05:30
-19,800
['d8d4deea2f5d5493510abd93075647a944660fcf']
Fix security advisory warning (#352)
[{'old_path': '.gitignore', 'new_path': '.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -30,7 +30,7 @@ node_modules\n .env\n \n public/uploads\n-public/packs\n+public/packs*\n \n # VIM files\n *.swp\n'}, {'old_path': 'Gemfile.lock', 'new_path': 'Gemfile.lock', 'type': <ModificationType.MODIFY: 5>, 'diff...
Ruby
7f96c39b183219403259a1997480a8a9c20cb666
542
2019-12-09 10:30:29+05:30
-19,800
['0a5d6c0de9a39de87215dd8662c35e3e8f5b2490']
Add OpenCollective funding details (#353)
[{'old_path': None, 'new_path': '.github/FUNDING.yml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1 @@\n+open_collective: chatwoot\n'}]
Ruby
1abaee04d89ec4ae6bcf113b37fdbb45b8bfe8e4
603
2019-12-10 10:29:35+05:30
-19,800
['7f96c39b183219403259a1997480a8a9c20cb666']
Feature: Profile API [#238] (#354) - api to update name and email - api to change password - api to set profile pic - fixes update_attribute! deprecation warning - introducing active storage
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,6 +6,8 @@ inherit_from: .rubocop_todo.yml\n \n Metrics/LineLength:\n Max: 150\n+RSpec/ExampleLength:\n+ Max: 10\n Documentation:\n Enabled: false\n Style/FrozenStringLiteralComment:\n'}, {'old_path': 'Gem...
Ruby
1005b9e2272da521de07d82e45d1ceed89512d59
542
2019-12-10 22:24:08+05:30
-19,800
['1abaee04d89ec4ae6bcf113b37fdbb45b8bfe8e4']
Add Database config variables to .env.example (#357)
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,3 +29,10 @@ CHARGEBEE_API_KEY=\n CHARGEBEE_SITE=\n CHARGEBEE_WEBHOOK_USERNAME=\n CHARGEBEE_WEBHOOK_PASSWORD=\n+\n+#Database config variables\n+POSTGRES_HOST=localhost\n+POSTGRES_DATABASE=chatwoot_dev\n+POSTGR...
Ruby
2b41e9176820a04bf012586ba00e66c3f079b885
542
2019-12-11 20:57:06+05:30
-19,800
['1005b9e2272da521de07d82e45d1ceed89512d59']
[Enhancement] Fetch previous messages in the conversation (#355) * Fetch previous messages in the conversation * Add specs for conversation store * Fix codeclimate issues * Exclude specs folder * Exclude globally * Fix path in exclude patterns * Add endPoints spec * Add snapshots for Spinner * ...
[{'old_path': '.codeclimate.yml', 'new_path': '.codeclimate.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,3 +11,16 @@ plugins:\n enabled: true\n brakeman:\n enabled: true\n+\n+exclude_patterns:\n+ - "spec/"\n+ - "**/specs/"\n+ - "db/*"\n+ - "bin/**/*"\n+ - "db/**/*"\n+ - "config/**/*"\n+ ...
Ruby
febc4bef8353da4f26ee5b5a93e4d42ae9b53705
542
2019-12-12 12:53:15+05:30
-19,800
['2b41e9176820a04bf012586ba00e66c3f079b885']
[Enhancement] Hide sidebar on tablets (#358) * [Enhancement] Hide sidebar on tablets * Remove unnecessary console.log * Use beforeDestroy
[{'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': '@@ -456,12 +456,12 @@ $meter-fill-bad: $alert-color;\n // --------------\n \n $offcanvas-sizes: (\n- small: 250px,...
Ruby
cef1200351ae134f875ee3512dee9845fc97d2a5
292
2019-12-13 02:42:16+05:30
-10,800
['febc4bef8353da4f26ee5b5a93e4d42ae9b53705']
Refactor for reauthorize_page method (#110) * Refactor for reauthorize_page method * Fix the rubocop issues
[{'old_path': 'app/controllers/api/v1/callbacks_controller.rb', 'new_path': 'app/controllers/api/v1/callbacks_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -22,31 +22,44 @@ class Api::V1::CallbacksController < ApplicationController\n @page_details = mark_already_existing_facebook_pages(fb_object...
Ruby
5b275ea157af880f669b9aa6bc7906df5b589bcc
501
2019-12-13 13:04:49+05:30
-19,800
['cef1200351ae134f875ee3512dee9845fc97d2a5']
Add option to reset password of agents to Admin (#351) * Add option to reset password of agents to Admin * Fix copy, remove setTimeout
[{'old_path': 'app/javascript/dashboard/i18n/locale/en/agentMgmt.json', 'new_path': 'app/javascript/dashboard/i18n/locale/en/agentMgmt.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -80,9 +80,16 @@\n "SUBMIT": "Edit Agent"\n },\n "BUTTON_TEXT": "Edit",\n+ "CANCEL_BUTTON_TEXT": "Cancel...
Ruby
19852b60cd8e5bdbb19d5258000b152a73ec9bbc
542
2019-12-13 15:26:14+05:30
-19,800
['5b275ea157af880f669b9aa6bc7906df5b589bcc']
[Bug] Fix icon alignment in buttons (#360) * Fix icon alignment in buttons * Fix ordering
[{'old_path': 'app/javascript/dashboard/assets/scss/_layout.scss', 'new_path': 'app/javascript/dashboard/assets/scss/_layout.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -41,11 +41,6 @@ body {\n .content-box {\n overflow: scroll;\n @include padding($space-normal);\n- .btn-fixed-right-top {\n- positi...
Ruby
7b63cbe1f7cde71533f6b95dfcffaaad7365fb84
542
2019-12-14 18:14:35+05:30
-19,800
['19852b60cd8e5bdbb19d5258000b152a73ec9bbc']
[Enhancement] Select widget_color while creating inbox (#362) * [Enhancement] Select widget_color while creating inbox * Fix codeclimate issues * Fix !important
[{'old_path': '.eslintrc.js', 'new_path': '.eslintrc.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -20,7 +20,7 @@ module.exports = {\n 'jsx-a11y/anchor-is-valid': 'off',\n 'import/no-unresolved': 'off',\n 'vue/max-attributes-per-line': ['error', {\n- 'singleline': 3,\n+ 'singleline': 20,\...
Ruby
cfc56705fd0c2be2eb1f6366b1ffa60ee02ef4f8
542
2019-12-15 00:06:01+05:30
-19,800
['7b63cbe1f7cde71533f6b95dfcffaaad7365fb84']
[Enhancement] Group widget messages by date (#363) * [Enhancement] Group widget messages by date * Update DateSeparator snapshot
[{'old_path': None, 'new_path': 'app/javascript/shared/components/DateSeparator.vue', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,48 @@\n+<template>\n+ <div class="date--separator">\n+ {{ date }}\n+ </div>\n+</template>\n+\n+<script>\n+export default {\n+ props: {\n+ date: {\n+ type: String,\n+...
Ruby
a7cb75e4684baabdb5e31b41f7dc47fc6973c63d
542
2019-12-15 16:59:12+05:30
-19,800
['cfc56705fd0c2be2eb1f6366b1ffa60ee02ef4f8']
[Performance] Optimize queries in conversation/message finders (#364) * [Performance] Optimize queries in conversation/message finders * Add message_finder spec * Fix message_finder spec
[{'old_path': '.gitignore', 'new_path': '.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -43,3 +43,5 @@ public/packs*\n # coverage report\n buildreports\n coverage\n+\n+/storage\n'}, {'old_path': 'app/finders/conversation_finder.rb', 'new_path': 'app/finders/conversation_finder.rb', 'type': <Modification...
Ruby
5c7c325c9c10c9481151ecee8aebf5793b974641
374
2019-12-15 23:24:34+05:30
-19,800
['a7cb75e4684baabdb5e31b41f7dc47fc6973c63d']
Refactor: use Array.includes instead of indexOf (#366)
[{'old_path': 'app/javascript/dashboard/components/layout/Sidebar.vue', 'new_path': 'app/javascript/dashboard/components/layout/Sidebar.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -103,7 +103,7 @@ export default {\n for (let i = 0; i < groupKey.length; i += 1) {\n const groupItem = this.sideba...
Ruby
17587d8a0cd969adf70150017f0fe859fb40eb93
542
2019-12-15 23:53:04+05:30
-19,800
['5c7c325c9c10c9481151ecee8aebf5793b974641']
[Enhancement] Group widget messages by users (#367) * Remove thumbnail * Show grouped messages
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -39,3 +39,4 @@ AllCops:\n - vendor/**/*\n - node_modules/**/*\n - lib/tasks/auto_annotate_models.rake\n+ - config/environments/**/*\n'}, {'old_path': 'app/javascript/dashboard/assets/scss/_woot.scs...
Ruby
87fb1adab11282259c3a2ffffb2071cd5cf98669
374
2019-12-16 18:23:14+05:30
-19,800
['17587d8a0cd969adf70150017f0fe859fb40eb93']
Refactor: Minor code refactoring in accordance with Vue.js best practices (#368)
[{'old_path': 'app/javascript/dashboard/App.vue', 'new_path': 'app/javascript/dashboard/App.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,7 +3,7 @@\n <transition name="fade" mode="out-in">\n <router-view></router-view>\n </transition>\n- <woot-snackbar-box></woot-snackbar-box>\n+ <woot-...
Ruby
4b677ae00efb4f2bd1d0d1983fd78a49ce70a1d1
542
2019-12-17 09:47:44+05:30
-19,800
['87fb1adab11282259c3a2ffffb2071cd5cf98669']
[Bug] Fix timestamp in temporary message (#369) * [Bug] Fix timestamp in temporary message * Fix tests
[{'old_path': 'app/javascript/widget/store/modules/conversation.js', 'new_path': 'app/javascript/widget/store/modules/conversation.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -8,7 +8,7 @@ import DateHelper from '../../../shared/helpers/DateHelper';\n const groupBy = require('lodash.groupby');\n \n export con...
Ruby
2ce7438c7961d3ace6b2ee1002767cd1371a32b2
542
2019-12-21 22:54:35+05:30
-19,800
['a92e3817f832c99cd01aa6a5d0d43c88ad7cf7e3']
[Refactor] Cleanup agent store and actions (#373) * Cleanup agent store and actions * Move set/create/update/destroy to helpers * Update mutation specs * Add specs for API helper * Fix edit/delete action visibility * Add actions specs * Remove unused API helpers * Remove duplicates * Remove dup...
[{'old_path': 'app/javascript/dashboard/api/account.js', 'new_path': 'app/javascript/dashboard/api/account.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,142 +1,32 @@\n-/* eslint no-console: 0 */\n /* global axios */\n-/* eslint no-undef: "error" */\n-/* eslint no-unused-expressions: ["error", { "allowShortC...
Ruby
6bdac3d9fe08da97c769bc043cc6d016af8a0d96
197
2019-12-22 18:00:23+05:30
-19,800
['2ce7438c7961d3ace6b2ee1002767cd1371a32b2']
[Cleanup] Remove unnecessary Capistrano config (#375)
[{'old_path': 'config/deploy.rb', 'new_path': 'config/deploy.rb', 'type': <ModificationType.DELETE: 4>, 'diff': ''}, {'old_path': 'config/deploy/production.rb', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': "@@ -1,55 +0,0 @@\n-# server-based syntax\n-# ======================\n-# Defines a single serve...
Ruby
1ee17cc8262d98589f462f0de3b9b160aa019d21
197
2019-12-22 22:53:18+05:30
-19,800
['6bdac3d9fe08da97c769bc043cc6d016af8a0d96']
[Enhancement] Docker support Debugging (byebug & pry) and receive emails to MailHog via smtp (#371) * updated development docker setup * turned on yarn integrity check * create test docker compose and update development dockerfile * create docker Readme.md file * fix README.md file * create docker-copmo...
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,19 +1,32 @@\n+REDIS_URL=redis://redis:6379\n+SECRET_KEY_BASE=\n+\n+# Postgres Database config variables\n+POSTGRES_HOST=postgres\n+POSTGRES_USERNAME=postgres\n+POSTGRES_PASSWORD=\n+RAILS_ENV=development\n+RAIL...
Ruby
9c7d8bb60dda5e77337d36cddd10dd9e501156bd
603
2019-12-23 11:56:25+05:30
-19,800
['1ee17cc8262d98589f462f0de3b9b160aa019d21']
[Docs] Update docker documentation (#377)
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -55,7 +55,7 @@ docker pull chatwoot/chatwoot\n \n Follow our [environment variables](https://www.chatwoot.com/docs/environment-variables/) guide to setup environment for Docker.\n \n-Follow our [docker development guid...
Ruby
1143893d9c4864bf746a3933eea179cd627d29f8
542
2019-12-23 12:16:46+05:30
-19,800
['9c7d8bb60dda5e77337d36cddd10dd9e501156bd']
[Bug] Fix conversation assignment mailer url (#374) * Fix conversation assignment mailer url * Remove mailer scope
[{'old_path': 'app/views/assignment_mailer/conversation_assigned.html.erb', 'new_path': 'app/views/assignment_mailer/conversation_assigned.html.erb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -2,4 +2,4 @@\n \n <p>Time to save the world. A new conversation has been assigned to you</p>\n \n-<p>Click <%= link_to '...
Ruby
32efe8676ff989b3c4cb8ce0906aaee7e98e5446
542
2019-12-23 13:00:22+05:30
-19,800
['1143893d9c4864bf746a3933eea179cd627d29f8']
Fix formatting in docs (#379)
[{'old_path': 'docs/README.md', 'new_path': 'docs/README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,6 +10,7 @@ This guide will help you get started with Chatwoot!\n * [Mac](/docs/installation-guide-mac-os)\n * [Ubuntu](/docs/installation-guide-ubuntu)\n * [Windows](/docs/installation-guide-windows)\n+* ...
Ruby
7d85f2e046e716266bae6de975950a824018944a
603
2019-12-24 13:27:25+05:30
-19,800
['32efe8676ff989b3c4cb8ce0906aaee7e98e5446']
Feature: Contact Merge Action (#378)
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,7 +7,7 @@ inherit_from: .rubocop_todo.yml\n Metrics/LineLength:\n Max: 150\n RSpec/ExampleLength:\n- Max: 10\n+ Max: 15\n Documentation:\n Enabled: false\n Style/FrozenStringLiteralComment:\n'}, {'old_pa...
Ruby
97ab82892da9acc2defb0f32967b32a2757d3005
603
2019-12-24 16:42:18+05:30
-19,800
['7d85f2e046e716266bae6de975950a824018944a']
Chore: labels to Conversations [#245]
[{'old_path': 'app/controllers/api/v1/conversations/labels_controller.rb', 'new_path': 'app/controllers/api/v1/conversations/labels_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,8 +2,8 @@ class Api::V1::Conversations::LabelsController < Api::BaseController\n before_action :set_conversation, onl...
Ruby
f98cd83a29a9ec6bc8c84c6212a2dff1ac01adb7
603
2019-12-24 17:32:27+05:30
-19,800
['97ab82892da9acc2defb0f32967b32a2757d3005']
Code-climate duplicate code fixes (#382) * Code-climate duplicate code fixes * Spec for accounts controller
[{'old_path': 'app/builders/account_builder.rb', 'new_path': 'app/builders/account_builder.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,11 +2,7 @@\n \n class AccountBuilder\n include CustomExceptions::Account\n-\n- def initialize(params)\n- @account_name = params[:account_name]\n- @email = params[...
Ruby
335e7487e6791734596efc94b58361f8d254ea11
197
2019-12-25 00:10:36+05:30
-19,800
['f98cd83a29a9ec6bc8c84c6212a2dff1ac01adb7']
Docs: Update docker guide to use website docs (#383)
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -55,7 +55,7 @@ docker pull chatwoot/chatwoot\n \n Follow our [environment variables](https://www.chatwoot.com/docs/environment-variables/) guide to setup environment for Docker.\n \n-Follow our [docker development guid...
Ruby
4e9290ad76df26862358f0fb25ebaf511f358ce9
197
2019-12-25 03:03:02+05:30
-19,800
['335e7487e6791734596efc94b58361f8d254ea11']
Send emails via sidekiq (#380) * add sidekiq web view if the user is an administrator * add sidekiq setup configuration and support * update devise to use delivery_later method and update test * update conversation to use deliver_later instead of deliver * Update Routes * Add Procfile for Heroku One-Cli...
[{'old_path': None, 'new_path': 'Procfile', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,2 @@\n+web: bin/rails server -p $PORT -e $RAILS_ENV\n+worker: bundle exec sidekiq -C config/sidekiq.yml\n\\ No newline at end of file\n'}, {'old_path': 'Procfile.dev', 'new_path': 'Procfile.dev', 'type': <ModificationType...
Ruby
344023018779f428de902a9cb9a976ca7e275ae4
542
2019-12-25 11:52:02+05:30
-19,800
['4e9290ad76df26862358f0fb25ebaf511f358ce9']
[Bug] Fix short_code param in update canned response API (#385)
[{'old_path': 'app/javascript/dashboard/routes/dashboard/settings/canned/EditCanned.vue', 'new_path': 'app/javascript/dashboard/routes/dashboard/settings/canned/EditCanned.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -111,7 +111,7 @@ export default {\n this.$store\n .dispatch('updateCannedRespo...
Ruby
f55c42d5a1db4d103e6438acccd73087c5ce99b0
542
2019-12-25 20:06:43+05:30
-19,800
['344023018779f428de902a9cb9a976ca7e275ae4']
Bug: Fix copy when no inbox is added. (#386)
[{'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': "@@ -59,9 +59,6 @@ export default {\n }\n return this.$t('CONVERSATION.LOADING_CONVERS...
Ruby
005ca62c6e01b9ad2098cdf7c8689b02d5512c7f
542
2019-12-26 11:52:14+05:30
-19,800
['f55c42d5a1db4d103e6438acccd73087c5ce99b0']
Bug: Fix signup 500 error (#389)
[{'old_path': 'app/controllers/api/v1/accounts_controller.rb', 'new_path': 'app/controllers/api/v1/accounts_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,7 +11,10 @@ class Api::V1::AccountsController < Api::BaseController\n with: :render_error_response\n \n def create\n- @user...
Ruby
19b4311e8b5fb35043328c5690a6f5794ef1ba76
542
2019-12-26 22:04:52+05:30
-19,800
['005ca62c6e01b9ad2098cdf7c8689b02d5512c7f']
Upgrade: Use postgres 11.6 in docker-compose (#391)
[{'old_path': 'docker-compose.production.yaml', 'new_path': 'docker-compose.production.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -27,7 +27,7 @@ services:\n command: ["bundle", "exec", "rails", "s", "-p", "3000", "-b", "0.0.0.0"]\n \n postgres:\n- image: postgres:9.6\n+ image: postgres:11.6\n ...
Ruby
96f8070e79bd5609ebdb437f66928af499fef033
501
2019-12-28 01:27:59+05:30
-19,800
['19b4311e8b5fb35043328c5690a6f5794ef1ba76']
Add specs for Policies (#392) * Add specs for Policies * Fix CI issues
[{'old_path': 'spec/factories/users.rb', 'new_path': 'spec/factories/users.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -22,5 +22,9 @@ FactoryBot.define do\n trait :with_avatar do\n avatar { Rack::Test::UploadedFile.new('spec/assets/avatar.png', 'image/png') }\n end\n+\n+ trait :administrator...
Ruby
5ddc46c474ce51856b9e48e40dc97c143206d1e9
542
2019-12-28 21:56:42+05:30
-19,800
['96f8070e79bd5609ebdb437f66928af499fef033']
Refactor: Inbox store, remove inboxes from sidebar (#387) * Refactor: Inbox store, remove inboxes from sidebar * Add a new page for inbox settings * Show inboxes on sidebar * Add inbox_members API * Disable similar-code check * Fix codeclimate scss issues * Add widget_color update API and actions ...
[{'old_path': '.codeclimate.yml', 'new_path': '.codeclimate.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,7 +11,9 @@ plugins:\n enabled: true\n brakeman:\n enabled: true\n-\n+checks:\n+ similar-code:\n+ enabled: false\n exclude_patterns:\n - "spec/"\n - "**/specs/"\n'}, {'old_path': 'app...
Ruby
790877c056ec40a6099e7c2f66d61f121732e6b1
275
2019-12-28 22:26:20+05:30
-3,600
['5ddc46c474ce51856b9e48e40dc97c143206d1e9']
Docs: Fix typo in website channel setup (#395)
[{'old_path': 'docs/channels/website-channel.md', 'new_path': 'docs/channels/website-channel.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,7 +19,7 @@ title: "How to create website channel?"\n \n ![add_agents](./images/add_agents.png)\n \n-**Step 5**. Hooray! You can sucessfully created a website inbox. Cop...
Ruby
e2aeeeca4303b2278c9b3a94a06e13c2c14d5ec2
542
2019-12-28 23:14:09+05:30
-19,800
['790877c056ec40a6099e7c2f66d61f121732e6b1']
Specs: Add specs for Facebook::SendReplyService (#396)
[{'old_path': 'app/services/facebook/send_reply_service.rb', 'new_path': 'app/services/facebook/send_reply_service.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,5 +1,4 @@\n-module Facebook\n- class SendReplyService\n+class Facebook::SendReplyService\n pattr_initialize [:message!]\n \n def perform\n@@ -...
Ruby
bacc0b2f187fc496acf77904233ca989a1b9bbd3
603
2019-12-29 11:13:28+05:30
-19,800
['e2aeeeca4303b2278c9b3a94a06e13c2c14d5ec2']
Enhancement: Use S3 for active storage (#398)
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,6 +25,7 @@ SMTP_ENABLE_STARTTLS_AUTO=\n \n #misc\n FRONTEND_URL=http://0.0.0.0:3000\n+ACTIVE_STORAGE_SERVICE=local\n \n #s3\n S3_BUCKET_NAME=\n'}, {'old_path': 'config/environments/production.rb', 'new_path':...
Ruby
7c4cc68561a019cb95058b2ea89f598cf95aae54
542
2019-12-30 11:53:16+05:30
-19,800
['bacc0b2f187fc496acf77904233ca989a1b9bbd3']
Bug: Force fetch inbox settings on route change (#400)
[{'old_path': 'app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue', 'new_path': 'app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -104,16 +104,27 @@ export default {\n return createMessengerScript(this.inbox.page_id);\n ...
Ruby
434d6c26569a15ee1cce583146840a54967da79c
442
2019-12-31 18:23:18+05:30
10,800
['7c4cc68561a019cb95058b2ea89f598cf95aae54']
Reduce docker image size (#394) Reduce docker image size based on: https://cadu.dev/reduce-your-docker-images-an-example-with-ruby/
[{'old_path': '.dockerignore', 'new_path': '.dockerignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,16 @@\n .bundle\n .env\n .env.*\n+.git\n+.gitignore\n+docker-compose.*\n+docker/Dockerfile\n+docker/dockerfiles\n+log\n+storage\n public/system\n+tmp\n+.codeclimate.yml\n public/assets\n public/packs\n ...
Ruby
439e064d900baab93af2781b06a4394d22ee8056
542
2020-01-01 22:30:43+05:30
-19,800
['434d6c26569a15ee1cce583146840a54967da79c']
Feature: Contact Panel with conversation details (#397) * Add Contact panel changes * Fix parent iframe blocked * Add Conversation Panel, Contact messages * Update contact panel with conversation details * Update designs in sidebar * Fix specs * Specs: Add specs for conversationMetadata and contact m...
[{'old_path': 'app/controllers/api/v1/widget/messages_controller.rb', 'new_path': 'app/controllers/api/v1/widget/messages_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -38,7 +38,9 @@ class Api::V1::Widget::MessagesController < ActionController::Base\n inbox_id: inbox.id,\n contact_id: co...
Ruby
f178429df23e9205a03c46b720e8f86482fa1aa2
542
2020-01-02 12:27:22+05:30
-19,800
['439e064d900baab93af2781b06a4394d22ee8056']
Docs: Update year in license file (#401)
[{'old_path': 'LICENSE', 'new_path': 'LICENSE', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,6 @@\n The MIT License (MIT)\n \n-Copyright (c) 2017-2019 ThoughtWoot Inc.\n+Copyright (c) 2017-2020 ThoughtWoot Inc.\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this soft...
Ruby
91ace96acd9255c56fa4b3e26ea02c35274177b3
603
2020-01-05 23:26:22+05:30
-19,800
['f178429df23e9205a03c46b720e8f86482fa1aa2']
Chore: Sidekiq ActionCable fix for Development (#405) - action cable works from sidekiq in development environments - documentation updates for docker
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -36,6 +36,10 @@ AWS_REGION=\n #sentry\n SENTRY_DSN=\n \n+# Credentials to access sidekiq dashboard in production\n+SIDEKIQ_AUTH_USERNAME=\n+SIDEKIQ_AUTH_PASSWORD=\n+\n #### This environment variables are only re...
Ruby
f02d422b6af23d3bac4485249277daa50d80f444
466
2020-01-06 22:32:41+05:30
-3,600
['91ace96acd9255c56fa4b3e26ea02c35274177b3']
Move ActionCable Broadcast Calls to sidekiq #154 (#403) * Move Pusher Calls to sidekiq * CR changes Co-authored-by: Sojan Jose <sojan@pepalo.com>
[{'old_path': None, 'new_path': 'app/jobs/action_cable_broadcast_job.rb', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,9 @@\n+class ActionCableBroadcastJob < ApplicationJob\n+ queue_as :default\n+\n+ def perform(members, event_name, data)\n+ members.each do |member|\n+ ActionCable.server.broadcast(m...
Ruby
f875a09fb7921bd644a20821f44b0e9f2b5aa67b
603
2020-01-07 22:59:17+05:30
-19,800
['f02d422b6af23d3bac4485249277daa50d80f444']
Chore: Switch from Carrierwave to ActiveStorage (#393)
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,6 +6,8 @@ inherit_from: .rubocop_todo.yml\n \n Metrics/LineLength:\n Max: 150\n+Metrics/ClassLength:\n+ Max: 125\n RSpec/ExampleLength:\n Max: 15\n Documentation:\n'}, {'old_path': 'Gemfile', 'new_path': ...
Ruby
b00e13f9db8c2efa9468e741f5cb143424c4d6d8
542
2020-01-08 23:10:46+05:30
-19,800
['f875a09fb7921bd644a20821f44b0e9f2b5aa67b']
Docs: Add brancing model (#410)
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -37,6 +37,11 @@ Detailed documentation is available at [www.chatwoot.com/docs](https://www.chatw\n \n You can find the quick setup docs [here](https://www.chatwoot.com/docs/quick-setup).\n \n+## Branching model\n+\n+We...
Ruby
8e6b735299a2b81a0a9a5878f99701e0c2bdffc3
603
2020-01-09 11:59:31+05:30
-19,800
['4f875dae4c4565ab93e25e945838105441cfdc42']
Bugfix: Sidekiq queues getting stuck [#411] ref: https://github.com/rails/rails/issues/36810 closes: #411
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -27,6 +27,8 @@ Rails/ApplicationController:\n - 'app/controllers/widgets_controller.rb'\n Style/ClassAndModuleChildren:\n EnforcedStyle: compact\n+ Exclude:\n+ - 'config/application.rb'\n RSpec/NestedGr...
Ruby
722f540b0310236a8143f9ed677fcd6660a399df
603
2020-01-09 13:06:40+05:30
-19,800
['59d4eaeca723df5f1c6d6a404a1301948d04cb0a']
[Feature] Email collect message hooks (#331) - Add email collect hook on creating conversation - Merge contact if it already exist
[{'old_path': '.rubocop.yml', 'new_path': '.rubocop.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,13 +4,13 @@ require:\n - rubocop-rspec\n inherit_from: .rubocop_todo.yml\n \n-Metrics/LineLength:\n+Layout/LineLength:\n Max: 150\n Metrics/ClassLength:\n Max: 125\n RSpec/ExampleLength:\n Max: 15\n-Do...
Ruby
6c0076665a7c4a9eb4038a7fbd744261f8ed3e53
603
2020-01-09 14:36:20+05:30
-19,800
['9c2f37d0f90b611ead89884afec1bb33d790bef6']
Bugfix: Production autoload issue for bot.rb - add app/bot to auto load path
[{'old_path': 'config/application.rb', 'new_path': 'config/application.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -16,6 +16,10 @@ module Chatwoot\n config.autoload_paths << Rails.root.join('lib')\n config.eager_load_paths << Rails.root.join('lib')\n \n+ # This is required in production for zeitwe...
Ruby
fc6a8c260101bbb51676432bbb2fff40584461ef
542
2020-01-12 19:31:32+05:30
-19,800
['63789e591600b8ecdef280262a6cff5ead63f09e']
Bug: Fix Heroku deployment on develop branch(#421)
[{'old_path': 'app/services/contact/merge_service.rb', 'new_path': 'app/services/contact/merge_service.rb', 'type': <ModificationType.DELETE: 4>, 'diff': ''}]
Ruby
655c5853586c178ae343231f0a2c8507b198ec05
542
2020-01-13 11:17:03+05:30
-19,800
['fc6a8c260101bbb51676432bbb2fff40584461ef']
Feature: View a contact's previous conversation (#422) * Add API to fetch conversations of a contact * Add conversation list in sidebar
[{'old_path': None, 'new_path': 'app/controllers/api/v1/contacts/conversations_controller.rb', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,23 @@\n+class Api::V1::Contacts::ConversationsController < Api::BaseController\n+ def index\n+ @conversations = current_account.conversations.includes(\n+ :assig...
Ruby
7cf19e0b528994a38b8685ce95c9daab07a4c9b6
656
2020-01-13 12:10:40+05:30
-19,800
['655c5853586c178ae343231f0a2c8507b198ec05']
Feature: Update design for web widget (#408)
[{'old_path': 'app/javascript/packs/sdk.js', 'new_path': 'app/javascript/packs/sdk.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -4,8 +4,6 @@ import { SDK_CSS } from '../widget/assets/scss/sdk';\n /* eslint-disable no-param-reassign */\n const bubbleImg =\n 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAA...
Ruby
18bf1a9e629b28fa5657f81f82da8060190a7c58
542
2020-01-13 14:25:23+05:30
-19,800
['7cf19e0b528994a38b8685ce95c9daab07a4c9b6']
Ignore case from input email (#424)
[{'old_path': 'app/controllers/api/v1/widget/messages_controller.rb', 'new_path': 'app/controllers/api/v1/widget/messages_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -15,8 +15,8 @@ class Api::V1::Widget::MessagesController < Api::V1::Widget::BaseController\n end\n \n def update\n- @message....
Ruby
cc180b77ce03eadd0868e9f94cc5d628a57d8222
611
2020-01-14 00:50:18+05:30
-19,800
['18bf1a9e629b28fa5657f81f82da8060190a7c58']
Include only incoming/outgoing messages in reporting (#429) * Skip activity messages from reporting * Makes reportable? as access list for reporting
[{'old_path': 'app/listeners/reporting_listener.rb', 'new_path': 'app/listeners/reporting_listener.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,10 +25,10 @@ class ReportingListener < BaseListener\n \n def message_created(event)\n message, account, timestamp = extract_message_and_account(event)\n- ...
Ruby
f7f7a6b9c7f653019df8aa55c57025d4e9f10e7d
656
2020-01-17 13:36:05+05:30
-19,800
['cc180b77ce03eadd0868e9f94cc5d628a57d8222']
Feature: Widget design update (#426)
[{'old_path': 'app/javascript/dashboard/assets/scss/widgets/_woot-tables.scss', 'new_path': 'app/javascript/dashboard/assets/scss/widgets/_woot-tables.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -21,7 +21,7 @@ table {\n tr {\n .show-if-hover {\n opacity: 0;\n- transition: all .2s $ease-in-...
Ruby
9290893f9d0daf22156fce5da56516d1563fe02a
500
2020-01-19 14:17:15+05:30
-19,800
['f7f7a6b9c7f653019df8aa55c57025d4e9f10e7d']
Style: Fix the last message style issue (#433)
[{'old_path': 'app/javascript/widget/views/Home.vue', 'new_path': 'app/javascript/widget/views/Home.vue', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -84,6 +84,7 @@ export default {\n left: 0;\n width: 100%;\n height: $space-normal;\n+ opacity: 0.1;\n background: linear-gradient(\n ...
Ruby
90e678743bec6b8b1e80ab2d4a5df72aae881848
542
2020-01-20 23:48:29+05:45
-20,700
['9290893f9d0daf22156fce5da56516d1563fe02a']
Update contributing.md (#434)
[{'old_path': 'docs/contributing.md', 'new_path': 'docs/contributing.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -11,17 +11,20 @@ Thanks for taking interest in contributing to Chatwoot source code. Before submi\n \n ## Pull Request Guidelines\n \n+- We use [git-flow](https://nvie.com/posts/a-successful-git-b...
Ruby
a2b025b548f34e6a8f5c49d6fd5ec35fc3787594
542
2020-01-21 18:57:44+05:45
-20,700
['90e678743bec6b8b1e80ab2d4a5df72aae881848']
Feature: View conversation labels on sidebar (#436)
[{'old_path': None, 'new_path': 'app/javascript/dashboard/api/conversations.js', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,18 @@\n+/* global axios */\n+import ApiClient from './ApiClient';\n+\n+class ConversationApi extends ApiClient {\n+ constructor() {\n+ super('conversations');\n+ }\n+\n+ getLabel...
Ruby
95fb6893b4b502e3fd82929e683df9227a6818ee
542
2020-01-21 19:56:58+05:45
-20,700
['a2b025b548f34e6a8f5c49d6fd5ec35fc3787594']
Feature: API to list the agents for the inbox (#438) Co-authored-by: Sojan Jose <sojan@pepalo.com>
[{'old_path': None, 'new_path': 'app/controllers/api/v1/widget/inbox_members_controller.rb', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,13 @@\n+class Api::V1::Widget::InboxMembersController < Api::V1::Widget::BaseController\n+ before_action :set_web_widget\n+\n+ def index\n+ @inbox_members = @web_widge...
Ruby
1d3ed016be84f8200a5dab637b25eff671ef5abd
603
2020-01-21 22:28:18+05:45
-20,700
['95fb6893b4b502e3fd82929e683df9227a6818ee']
Chore: Documentation for configuring cloud storage (#439)
[{'old_path': None, 'new_path': 'docs/development/project-setup/configuring-cloud-storage.md', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,58 @@\n+---\n+path: "/docs/configuring-cloud-storage"\n+title: "Configuring Cloud Storage"\n+---\n+\n+### Using Amazon S3\n+\n+You can get started with [Creating an S3 bu...
Ruby
d4b3ba4baa7137848343c24141b481a7af8ad6f6
672
2020-01-23 23:14:07+05:45
-20,700
['1d3ed016be84f8200a5dab637b25eff671ef5abd']
[#139] Send conversation emails (#442) * [#139] Delayed emails for conversations * Added the setex and get methods to Redis wrapper * Set the priorities for the sidekiq queues * Was not able to use mailhog for testing email in local, switched back to letter opener and added comments on using the SMTP settings * ...
[{'old_path': '.circleci/config.yml', 'new_path': '.circleci/config.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -13,6 +13,7 @@ defaults: &defaults\n # CircleCI maintains a library of pre-built images\n # documented at https://circleci.com/docs/2.0/circleci-images/\n - image: circleci/postgres:9....
Ruby
04d347f0eea7bdc436721d529a95481bf45643b2
672
2020-01-24 14:10:52+05:45
-20,700
['d4b3ba4baa7137848343c24141b481a7af8ad6f6']
Chore: Changed from email and reply to email for conversation email (#444)
[{'old_path': 'app/mailers/conversation_mailer.rb', 'new_path': 'app/mailers/conversation_mailer.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -15,7 +15,7 @@ class ConversationMailer < ApplicationMailer\n @messages = recap_messages + new_messages\n @messages = @messages.select(&:reportable?)\n \n- m...
Ruby
1fd41277099347eef12f031d6e6e3ee564265842
672
2020-01-24 14:31:52+05:45
-20,700
['04d347f0eea7bdc436721d529a95481bf45643b2']
Removed agent dashboard link in conversation mail to user (#445)
[{'old_path': 'app/views/conversation_mailer/new_message.html.erb', 'new_path': 'app/views/conversation_mailer/new_message.html.erb', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -12,5 +12,3 @@\n </tr>\n <% end %>\n </table>\n-\n-<p>Click <%= link_to 'here', app_conversation_url(id: @conversation.display_id)...
Ruby
2168f823a593646a811ef48ba4b74e85670afe18
672
2020-01-26 22:46:34+05:45
-20,700
['e04ff6441b6c73bbb53ae36fbea75e09b5c4fc42']
[#446] Redis authentication support Previously we did not support authentication for redis anywhere. Also in the docker compose we were exposing redis port 6379 without any authentication. In the app side for the connections that app server (for storing keys as well as for socket connections made using action cable) a...
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,6 +1,12 @@\n-REDIS_URL=redis://redis:6379\n SECRET_KEY_BASE=\n \n+#redis config\n+REDIS_URL=redis://redis:6379\n+# If you are using docker-compose, set this variable's value to be any string,\n+# which will be...
Ruby
6325acd1834488b9089c1dbb27ea314db53f19d5
197
2020-01-27 00:15:13+05:45
-39,600
['8cf135f2db30c178e4743afeb257c55faed7ac66']
Feature: Add Sidekiq docker (#443) * update db:schema due to migration * reduce default concurrency for redis connection limit * Allow auto update packages in the development mode without building image * add sidekiq support to docker-compose * Pass sidekiq cofig file * passed the env file in base image...
[{'old_path': 'Procfile.dev', 'new_path': 'Procfile.dev', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,3 +1,3 @@\n backend: bin/rails s -p 3000\n frontend: bin/webpack-dev-server\n-worker: bundle exec sidekiq\n\\ No newline at end of file\n+worker: bundle exec sidekiq -C config/sidekiq.yml\n'}, {'old_path': 'co...
Ruby
199642d3bd6142118fd80e4a526de0e98c62f15b
603
2020-01-27 00:59:51+05:45
-20,700
['6325acd1834488b9089c1dbb27ea314db53f19d5']
Chore: Render avatar url in validate token method (#448)
[{'old_path': 'app/controllers/confirmations_controller.rb', 'new_path': 'app/controllers/devise/confirmations_controller.rb', 'type': <ModificationType.RENAME: 3>, 'diff': '@@ -1,4 +1,4 @@\n-class ConfirmationsController < Devise::ConfirmationsController\n+class Devise::ConfirmationsController < Devise::ConfirmationsC...
Ruby
b3264a0d7b4b3e96e2e766f13a4b7771743ed435
611
2020-02-02 16:29:18+05:30
-19,800
['199642d3bd6142118fd80e4a526de0e98c62f15b']
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>
[{'old_path': 'app/controllers/api/v1/labels_controller.rb', 'new_path': 'app/controllers/api/v1/labels_controller.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,4 +2,8 @@ class Api::V1::LabelsController < Api::BaseController\n def index # list all labels in account\n @labels = current_account.all_conv...
Ruby
1f4703d25d9a89d89031b92ececa1fe3eaa3ade1
542
2020-02-02 17:35:03+05:30
-19,800
['b3264a0d7b4b3e96e2e766f13a4b7771743ed435']
Chore: Disable brakeman in Codeclimate (#453)
[{'old_path': '.codeclimate.yml', 'new_path': '.codeclimate.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,7 +10,7 @@ plugins:\n scss-lint:\n enabled: true\n brakeman:\n- enabled: true\n+ enabled: false\n checks:\n similar-code:\n enabled: false\n'}]
Ruby
0b31e141329b319f00b52cbc8b6c12867a514f53
542
2020-02-02 22:49:16+05:45
-19,800
['1f4703d25d9a89d89031b92ececa1fe3eaa3ade1']
Feature: Add online status to each user (#452) * Feature: Add online status to each user * Add OnlineStatusable, add availability status to thumbnail
[{'old_path': 'app/channels/room_channel.rb', 'new_path': 'app/channels/room_channel.rb', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,10 @@\n class RoomChannel < ApplicationCable::Channel\n def subscribed\n stream_from params[:pubsub_token]\n+ ::OnlineStatusTracker.add_subscription(params[:pubsub...
Ruby
a287c86bc47166c832de05788c04439a6986b2d7
603
2020-02-02 22:52:38+05:30
-20,700
['0b31e141329b319f00b52cbc8b6c12867a514f53']
Bugfix: Fix password reset (#455)
[{'old_path': 'app/controllers/devise/confirmations_controller.rb', 'new_path': 'app/controllers/devise_overrides/confirmations_controller.rb', 'type': <ModificationType.RENAME: 3>, 'diff': '@@ -1,4 +1,4 @@\n-class Devise::ConfirmationsController < Devise::ConfirmationsController\n+class DeviseOverrides::ConfirmationsC...
Ruby
a9c304f1ef290e68fa9343c301bc4777b4bab9a3
542
2020-02-03 00:54:00+05:45
-19,800
['a287c86bc47166c832de05788c04439a6986b2d7']
Feature: Twitter DM Integration (#451) An initial version of twitter integration Co-authored-by: Sojan Jose <sojan@pepalo.com>
[{'old_path': '.env.example', 'new_path': '.env.example', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,6 +19,10 @@ FB_VERIFY_TOKEN=\n FB_APP_SECRET=\n FB_APP_ID=\n \n+#twitter app\n+TWITTER_CONSUMER_KEY=\n+TWITTER_CONSUMER_SECRET=\n+\n #mail\n MAILER_SENDER_EMAIL=accounts@chatwoot.com\n SMTP_PORT=1025\n'}, {'o...
Ruby
067411b5b67808bd3e171f98b9c92b9f273351fe
603
2020-02-03 14:02:32+05:45
-20,700
['cf56b9560d54f7d98c2e521e05b7feb6af47159f']
Fix heroku deploy and docker image issues #458 #459
[{'old_path': 'Gemfile.lock', 'new_path': 'Gemfile.lock', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,6 @@\n GIT\n remote: https://github.com/chatwoot/twitty\n- revision: a005f8f6740fc8d2d3500701e1ab4ab0f1416c26\n+ revision: 58b4958d7f4a58eec8fe9543caedb232308253f6\n specs:\n twitty (0.1.0)\n ...
Ruby
1aebdc63d560546e4f0dae5aa97dd8330d2a1e76
603
2020-02-03 14:29:03+05:45
-20,700
['03a46d0cfecffab6f799a9958f16dc261c43703b']
Fix coverage issue with codeclimate
[{'old_path': 'Gemfile', 'new_path': 'Gemfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -100,7 +100,8 @@ group :development, :test do\n gem 'rubocop-rspec', require: false\n gem 'seed_dump'\n gem 'shoulda-matchers'\n- gem 'simplecov', require: false\n+ # locking until https://github.com/codeclimate/te...
Ruby