9 lines
158 B
Ruby
9 lines
158 B
Ruby
class Bubbles::ImagesController < ApplicationController
|
|
include BubbleScoped
|
|
|
|
def destroy
|
|
@bubble.image.purge_later
|
|
redirect_to @bubble
|
|
end
|
|
end
|