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

9 lines
172 B
Ruby

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