Files
fizzy/app/controllers/bubbles/images_controller.rb
T
2024-10-19 19:00:04 -07:00

9 lines
208 B
Ruby

class Bubbles::ImagesController < ApplicationController
include BubbleScoped, BucketScoped
def destroy
@bubble.image.purge_later
redirect_to bucket_bubble_path(@bubble.bucket, @bubble)
end
end