6e90a6dbfb
Hover to select items
15 lines
275 B
Ruby
15 lines
275 B
Ruby
class Cards::NotNowsController < ApplicationController
|
|
include CardScoped
|
|
|
|
def create
|
|
capture_card_location
|
|
@card.postpone
|
|
refresh_stream_if_needed
|
|
|
|
respond_to do |format|
|
|
format.turbo_stream
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
end
|