9 lines
142 B
Ruby
9 lines
142 B
Ruby
class Cards::PublishesController < ApplicationController
|
|
include CardScoped
|
|
|
|
def create
|
|
@card.publish
|
|
redirect_to @card
|
|
end
|
|
end
|