14 lines
157 B
Ruby
14 lines
157 B
Ruby
class BoostsController < ApplicationController
|
|
include BubbleScoped
|
|
|
|
def index
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
@bubble.boosts.create!
|
|
end
|
|
end
|