Skip to content

Commit

Permalink
Merge pull request #517 from rsv-ink/main
Browse files Browse the repository at this point in the history
Avoid problem with Rails classic autoloader
  • Loading branch information
allmarkedup authored Sep 23, 2023
2 parents ba5aeba + bfd375e commit 128ad63
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/controllers/lookbook/embeds_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Lookbook
class EmbedsController < ApplicationController
class EmbedsController < Lookbook::ApplicationController
include ActionView::Helpers::SanitizeHelper
include TargetableConcern
include WithPreviewControllerConcern
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/lookbook/inspector_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Lookbook
class InspectorController < ApplicationController
class InspectorController < Lookbook::ApplicationController
include TargetableConcern
include WithPanelsConcern
include WithPreviewControllerConcern
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/lookbook/pages_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Lookbook
class PagesController < ApplicationController
class PagesController < Lookbook::ApplicationController
helper_method :page_controller

def self.controller_path
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/lookbook/previews_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Lookbook
class PreviewsController < ApplicationController
class PreviewsController < Lookbook::ApplicationController
include TargetableConcern
include WithPreviewControllerConcern

Expand Down

0 comments on commit 128ad63

Please sign in to comment.