From: Andy Allan Date: Wed, 16 Feb 2022 11:27:52 +0000 (+0000) Subject: Update documentation for how to confirm a new user account X-Git-Tag: live~1343^2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/572e842f8cd5311832a61a27ad6a18a3e4b64f68 Update documentation for how to confirm a new user account Fixes #3460 --- diff --git a/CONFIGURE.md b/CONFIGURE.md index f7638a49a..9bf5e16bb 100644 --- a/CONFIGURE.md +++ b/CONFIGURE.md @@ -30,9 +30,7 @@ If you create a user by signing up to your local website, you need to confirm th $ bundle exec rails console >> user = User.find_by(:display_name => "My New User Name") => #[ ... ] ->> user.status = "active" -=> "active" ->> user.save! +>> user.activate! => true >> quit ```