Fix dangerous send exploit
This commit is contained in:
parent
5d3d3a68e7
commit
4b891b3f70
|
@ -5,7 +5,7 @@ class Ajax::ModerationController < ApplicationController
|
||||||
@success = false
|
@success = false
|
||||||
render partial: "ajax/shared/status"
|
render partial: "ajax/shared/status"
|
||||||
end
|
end
|
||||||
|
|
||||||
def vote
|
def vote
|
||||||
params.require :id
|
params.require :id
|
||||||
params.require :upvote
|
params.require :upvote
|
||||||
|
@ -174,7 +174,19 @@ class Ajax::ModerationController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
@checked = status
|
@checked = status
|
||||||
target_user.send("#{params[:type]}=", status)
|
case params[:type].downcase
|
||||||
|
when 'blogger'
|
||||||
|
target_user.blogger = status
|
||||||
|
when 'contributor'
|
||||||
|
target_user.contributor = status
|
||||||
|
when 'translator'
|
||||||
|
target_user.translator = status
|
||||||
|
when 'supporter'
|
||||||
|
target_user.translator = status
|
||||||
|
when 'moderator'
|
||||||
|
target_user.translator = status
|
||||||
|
when 'admin'
|
||||||
|
target_user.translator = status
|
||||||
target_user.save!
|
target_user.save!
|
||||||
|
|
||||||
@message = I18n.t('messages.moderation.privilege.checked', privilege: params[:type])
|
@message = I18n.t('messages.moderation.privilege.checked', privilege: params[:type])
|
||||||
|
|
Loading…
Reference in New Issue