9 lines
190 B
Ruby
9 lines
190 B
Ruby
class PostVotesController < ApplicationController
|
|
def create
|
|
@post = Post.find(params[:post_id])
|
|
@post.vote!(params[:score])
|
|
rescue PostVote::Error => x
|
|
@error = x
|
|
end
|
|
end
|