Merge branch 'hotfix/1.0.1'
Bugfix: Sidekiq queues getting stuck [#411]
This commit is contained in:
commit
9c2f37d0f9
3 changed files with 4 additions and 1 deletions
|
@ -27,6 +27,8 @@ Rails/ApplicationController:
|
|||
- 'app/controllers/widgets_controller.rb'
|
||||
Style/ClassAndModuleChildren:
|
||||
EnforcedStyle: compact
|
||||
Exclude:
|
||||
- 'config/application.rb'
|
||||
RSpec/NestedGroups:
|
||||
Enabled: true
|
||||
Max: 4
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
class Api::V1::Widget::MessagesController < ActionController::Base
|
||||
skip_before_action :verify_authenticity_token
|
||||
before_action :set_conversation, only: [:create]
|
||||
|
||||
def index
|
||||
|
|
|
@ -11,7 +11,7 @@ Bundler.require(*Rails.groups)
|
|||
module Chatwoot
|
||||
class Application < Rails::Application
|
||||
# Initialize configuration defaults for originally generated Rails version.
|
||||
config.load_defaults 5.0
|
||||
config.load_defaults 6.0
|
||||
|
||||
config.autoload_paths << Rails.root.join('lib')
|
||||
config.eager_load_paths << Rails.root.join('lib')
|
||||
|
|
Loading…
Reference in a new issue