Add some requires now required as spree does not contain controller helpers

This commit is contained in:
Luis Ramos
2020-09-03 19:04:20 +01:00
parent 874cb78809
commit 9c0c324835
4 changed files with 14 additions and 0 deletions

View File

@@ -1,6 +1,10 @@
# frozen_string_literal: true
require 'cancan'
require 'spree/core/controller_helpers/auth'
require 'spree/core/controller_helpers/respond_with'
require 'spree/core/controller_helpers/common'
require 'spree/core/controller_helpers/ssl'
module Spree
class BaseController < ApplicationController

View File

@@ -1,3 +1,7 @@
# frozen_string_literal: true
require 'spree/core/controller_helpers/order'
module Spree
class StoreController < Spree::BaseController
layout 'darkswarm'

View File

@@ -1,3 +1,7 @@
# frozen_string_literal: false
require 'spree/core/s3_support'
class Enterprise < ActiveRecord::Base
SELLS = %w(unspecified none own any).freeze
ENTERPRISE_SEARCH_RADIUS = 100

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
class EnterpriseRelationship < ActiveRecord::Base
belongs_to :parent, class_name: 'Enterprise', touch: true
belongs_to :child, class_name: 'Enterprise', touch: true