2022-11-24 15:44:31 +02:00
|
|
|
module Cms
|
|
|
|
|
2022-11-25 14:46:49 +02:00
|
|
|
class ImagesController < CmsController
|
2022-11-24 15:44:31 +02:00
|
|
|
|
|
|
|
def index
|
2022-11-28 00:12:20 +02:00
|
|
|
@images = Image.all
|
2022-11-24 15:44:31 +02:00
|
|
|
end
|
|
|
|
|
2022-11-24 22:28:56 +02:00
|
|
|
def new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2022-11-28 00:12:20 +02:00
|
|
|
Image.save_image(params['filename'] , params['image_file'])
|
2022-11-24 22:28:56 +02:00
|
|
|
redirect_to cms_image_index_path
|
|
|
|
end
|
|
|
|
|
2022-11-24 15:44:31 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|