Skip to content

Instantly share code, notes, and snippets.

@Flink
Created March 27, 2012 14:58
Show Gist options
  • Save Flink/2216621 to your computer and use it in GitHub Desktop.
Save Flink/2216621 to your computer and use it in GitHub Desktop.
Always exception with strong parameters
params = ActionController::Parameters.new({movie: {title: 'test', overview: 'test', released_on: Date.today}})
m = Movie.create params.required(:movie).permit(:title, :overview, :released_on)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment