Files
fizzy/app/controllers/bubbles/images_controller.rb
T
2024-09-18 13:09:06 -04:00

9 lines
210 B
Ruby

class Bubbles::ImagesController < ApplicationController
include BubbleScoped, ProjectScoped
def destroy
@bubble.image.purge_later
redirect_to project_bubble_url(@bubble.project, @bubble)
end
end