Skip to content

Instantly share code, notes, and snippets.

View sahilchopra's full-sized avatar

Sahil Chopra sahilchopra

View GitHub Profile
@marekciupak
marekciupak / validating_http_parameters.md
Last active July 27, 2024 02:20
Ruby on Rails: Validating HTTP parameters

Validating HTTP parameters

Let's say you need to handle the following action:

class UsersController < ApplicationController
  def update
    user = User.find(id)
    result = update_user(user, attrs)