Merge pull request #724 from ZmagoD/zd_SCI_1410
Fix Repeat Tutorial Action / Tutorial
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
@ -285,7 +285,7 @@ class MyModule < ApplicationRecord
|
|||
if !final.include?(my_module)
|
||||
final << my_module
|
||||
end
|
||||
modules.push(*my_module.my_modules.flatten)
|
||||
modules.push(*my_module.my_modules)
|
||||
end
|
||||
final
|
||||
end
|
||||
|
|
|
@ -36,10 +36,10 @@ if ENV['PAPERCLIP_STORAGE'] == "s3"
|
|||
medium: :private
|
||||
},
|
||||
s3_storage_class: {
|
||||
medium: :reduced_redundancy,
|
||||
thumb: :reduced_redundancy,
|
||||
icon: :reduced_redundancy,
|
||||
icon_small: :reduced_redundancy
|
||||
medium: :REDUCED_REDUNDANCY,
|
||||
thumb: :REDUCED_REDUNDANCY,
|
||||
icon: :REDUCED_REDUNDANCY,
|
||||
icon_small: :REDUCED_REDUNDANCY
|
||||
}
|
||||
})
|
||||
elsif ENV['PAPERCLIP_STORAGE'] == "filesystem"
|
||||
|
|