f725a69dee
Then it will be easier to break things that are double nested out of that nesting.
14 lines
219 B
Ruby
14 lines
219 B
Ruby
class Bubbles::EngagementsController < ApplicationController
|
|
include BubbleScoped
|
|
|
|
def create
|
|
@bubble.engage
|
|
redirect_to @bubble
|
|
end
|
|
|
|
def destroy
|
|
@bubble.reconsider
|
|
redirect_to @bubble
|
|
end
|
|
end
|