52 lines
1.1 KiB
Ruby
52 lines
1.1 KiB
Ruby
class Boards::ColumnsController < ApplicationController
|
|
include BoardScoped
|
|
|
|
before_action :set_column, only: %i[ show update destroy ]
|
|
|
|
def index
|
|
@columns = @board.columns.sorted
|
|
fresh_when etag: @columns
|
|
end
|
|
|
|
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)
|
|
|
|
respond_to do |format|
|
|
format.turbo_stream
|
|
format.json { head :created, location: board_column_path(@board, @column, format: :json) }
|
|
end
|
|
end
|
|
|
|
def update
|
|
@column.update!(column_params)
|
|
|
|
respond_to do |format|
|
|
format.turbo_stream
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@column.destroy
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_back_or_to @board }
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
private
|
|
def set_column
|
|
@column = @board.columns.find(params[:id])
|
|
end
|
|
|
|
def column_params
|
|
params.expect(column: [ :name, :color ])
|
|
end
|
|
end
|