Admin interface #6

Merged
ignisf merged 23 commits from admin-interface into master 2014-10-06 12:33:26 +03:00
Showing only changes of commit d5cdc8efc1 - Show all commits

View File

@ -30,6 +30,11 @@ class PictureUploader < CarrierWave::Uploader::Base
# end
# Create different versions of your uploaded files:
version :medium do
process :resize_to_fit => [171, 180]
end
version :thumb do
process :resize_to_fit => [50, 50]
end