f58a1aeb31
Mobile team needs this. Also, this lets us get rid from some conditionals for handling both modes with a single template. https://3.basecamp.com/2914079/buckets/44843469/messages/9437287330
72 lines
1.6 KiB
Ruby
72 lines
1.6 KiB
Ruby
class CardsController < ApplicationController
|
|
include FilterScoped
|
|
|
|
before_action :set_board, only: %i[ create ]
|
|
before_action :set_card, only: %i[ show edit update destroy ]
|
|
before_action :redirect_if_drafted, only: :show
|
|
before_action :ensure_permission_to_administer_card, only: %i[ destroy ]
|
|
|
|
def index
|
|
set_page_and_extract_portion_from @filter.cards
|
|
end
|
|
|
|
def create
|
|
respond_to do |format|
|
|
format.html do
|
|
card = Current.user.draft_new_card_in(@board)
|
|
redirect_to card_draft_path(card)
|
|
end
|
|
|
|
format.json do
|
|
card = @board.cards.create! card_params.merge(creator: Current.user, status: "published")
|
|
head :created, location: card_path(card, format: :json)
|
|
end
|
|
end
|
|
end
|
|
|
|
def show
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
@card.update! card_params
|
|
|
|
respond_to do |format|
|
|
format.turbo_stream
|
|
format.json { render :show }
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@card.destroy!
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to @card.board, notice: "Card deleted" }
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
private
|
|
def set_board
|
|
@board = Current.user.boards.find params[:board_id]
|
|
end
|
|
|
|
def set_card
|
|
@card = Current.user.accessible_cards.find_by!(number: params[:id])
|
|
end
|
|
|
|
def redirect_if_drafted
|
|
redirect_to card_draft_path(@card) if @card.drafted?
|
|
end
|
|
|
|
def ensure_permission_to_administer_card
|
|
head :forbidden unless Current.user.can_administer_card?(@card)
|
|
end
|
|
|
|
def card_params
|
|
params.expect(card: [ :title, :description, :image, :created_at, :last_active_at ])
|
|
end
|
|
end
|