mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
e59e8ac8e7
- Add .params to models and update controllers - Add afk time to gather - Reannotate models - Fix rspec problem by using latest rspec plugins from github
13 lines
284 B
Ruby
13 lines
284 B
Ruby
class VotesController < ApplicationController
|
|
def create
|
|
@vote = Vote.new(Vote.params(params, cuser))
|
|
@vote.user = cuser
|
|
raise AccessError unless @vote.can_create? cuser
|
|
|
|
if @vote.save
|
|
flash[:notice] = t(:votes_success)
|
|
end
|
|
|
|
redirect_to_back
|
|
end
|
|
end
|