fixed conflict after merch dev for current shop
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
class Shop < ApplicationRecord
|
||||
#ShopDetail = Shop.find_by_id(1)
|
||||
#ShopDetail = Shop.current_shop
|
||||
|
||||
# Shop Image Uploader
|
||||
|
||||
mount_uploader :logo, ShopImageUploader
|
||||
has_many :display_images
|
||||
|
||||
accepts_nested_attributes_for :display_images
|
||||
|
||||
def file_data=(input_data)
|
||||
self.data = input_data.read
|
||||
end
|
||||
|
||||
def self.current_shop
|
||||
ActsAsTenant.current_tenant
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user