Files
fizzy/app/controllers/boosts_controller.rb
T
2024-09-18 13:09:06 -04:00

14 lines
172 B
Ruby

class BoostsController < ApplicationController
include BubbleScoped, ProjectScoped
def index
end
def new
end
def create
@bubble.boosts.create!
end
end