5134985418
We now submit on every selection, so we dont need a whole form and checkboxes to do it. This needs some design tune-up after the change, though. cc @jzimdars
11 lines
203 B
Ruby
11 lines
203 B
Ruby
class Bubbles::AssignmentsController < ApplicationController
|
|
include BubbleScoped
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
@bubble.toggle_assignment @bucket.users.active.find(params[:assignee_id])
|
|
end
|
|
end
|