Вопрос

I would like to use something like that:

def answer_params
  params.require(:answer).permit!.without(:user_id)
end
Это было полезно?

Решение

will this work?

params.require(:answer).permit!.except(:user_id)

Другие советы

I just want to put this out here, whitelisting is not DRY. Imagine a JSON API for a document based entry that could have up to 100 (or more) attributes (key value pairs). Generally the only pieces you need concern with are attributes that can escalate privileges like user_id.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top