コントローラーで作成アクションがあります
def create
params[:note]
@note = current_user.notes.new(params[:note])
if @note.save
respond_with @note, status: :created
else
respond_with @note.errors, status: :unprocessable_entity
end
end
current_userと呼ばれる別のパラメーターをモデルに渡したいのですが、それを行う方法と、モデルメソッドで渡されたパラメーターを取得する方法を教えてください。