Files
fizzy/app/controllers/boards/columns_controller.rb
T
2025-11-17 16:16:19 +01:00

32 lines
624 B
Ruby

class Boards::ColumnsController < ApplicationController
include BoardScoped
before_action :set_column, only: %i[ show update destroy ]
def show
set_page_and_extract_portion_from @column.cards.active.latest.with_golden_first.preloaded
fresh_when etag: @page.records
end
def create
@column = @board.columns.create!(column_params)
end
def update
@column.update!(column_params)
end
def destroy
@column.destroy
end
private
def set_column
@column = @board.columns.find(params[:id])
end
def column_params
params.expect(column: [ :name, :color ])
end
end