Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

When using the form_for helper in the example, we need to use users_path... #965

Merged
merged 1 commit into from Jul 20, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -109,7 +109,7 @@ In your migrations:

In your edit and new views:

<%= form_for @user, :url => user_path, :html => { :multipart => true } do |form| %>
<%= form_for @user, :url => users_path, :html => { :multipart => true } do |form| %>
<%= form.file_field :avatar %>
<% end %>

Expand Down