Files
sx-fc/app/controllers/settings/display_images_controller.rb
San Wai Lwin 694feb9c06 For pull
2018-03-13 14:46:07 +06:30

12 lines
345 B
Ruby

class Settings::DisplayImagesController < ApplicationController
def destroy
#byebug
@item_photo = DisplayImage.find(params[:shop_id])
item = @item_photo.id
@item_photo.destroy
respond_to do |format|
format.html {redirect_to settings_shops_url+'/1/edit', notice: 'Image was successfully destroyed.'}
end
end
end