Fix dangerous send exploit
This commit is contained in:
parent
5d3d3a68e7
commit
4b891b3f70
|
@ -174,7 +174,19 @@ class Ajax::ModerationController < ApplicationController
|
|||
end
|
||||
|
||||
@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!
|
||||
|
||||
@message = I18n.t('messages.moderation.privilege.checked', privilege: params[:type])
|
||||
|
|
Loading…
Reference in New Issue