9 lines
147 B
Ruby
9 lines
147 B
Ruby
class Cards::NotNowsController < ApplicationController
|
|
include CardScoped
|
|
|
|
def create
|
|
@card.postpone
|
|
render_card_replacement
|
|
end
|
|
end
|