Commit 35e061b34f901ecf5ebaa8b46b0093619645681e
Exists in
master
and in
29 other branches
Merge branch 'attr_accessible' into 'master'
Attr accessible Quick fix to use the instructions of: http://noosfero.org/Development/InstallData See merge request !291
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/models/domain.rb
app/models/user.rb
... | ... | @@ -5,7 +5,7 @@ require 'user_activation_job' |
5 | 5 | # Rails generator. |
6 | 6 | class User < ActiveRecord::Base |
7 | 7 | |
8 | - attr_accessible :login, :email, :password, :password_confirmation | |
8 | + attr_accessible :login, :email, :password, :password_confirmation, :activated_at | |
9 | 9 | |
10 | 10 | N_('Password') |
11 | 11 | N_('Password confirmation') | ... | ... |