Skip to content

Commit 457feda

Browse files
authored
Merge pull request rails#43570 from mctaylorpants/remove-glob-from-channel
Remove glob pattern from app/channels load path
2 parents 1d55f54 + dd5a49c commit 457feda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

railties/lib/rails/engine/configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def paths
4444
exclude: ["assets", javascript_path]
4545
paths.add "app/assets", glob: "*"
4646
paths.add "app/controllers", eager_load: true
47-
paths.add "app/channels", eager_load: true, glob: "**/*_channel.rb"
47+
paths.add "app/channels", eager_load: true
4848
paths.add "app/helpers", eager_load: true
4949
paths.add "app/models", eager_load: true
5050
paths.add "app/mailers", eager_load: true

0 commit comments

Comments
 (0)