14 lines
233 B
Ruby
14 lines
233 B
Ruby
class Bubbles::EngagementsController < ApplicationController
|
|
include BubbleScoped, BucketScoped
|
|
|
|
def create
|
|
@bubble.engage
|
|
redirect_to @bubble
|
|
end
|
|
|
|
def destroy
|
|
@bubble.reconsider
|
|
redirect_to @bubble
|
|
end
|
|
end
|