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