diff options
author | Ash Furrow <ash@ashfurrow.com> | 2017-04-08 19:09:46 -0400 |
---|---|---|
committer | wxcafé <wxcafe@users.noreply.github.com> | 2017-04-09 01:09:46 +0200 |
commit | 6e3925521d152808febf273312c73a09e3d3feb3 (patch) | |
tree | c30642472f5a2c3cfefbb39a0b46eba185cfeb38 /lib | |
parent | b89f007862bb06bbf892c4f37dbc31ed83138b53 (diff) |
Adds user confirmation rake task (#1300)
* Adds task to confirm user by email. * Adds documentation for manual confirmation.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/mastodon.rake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake index 79dcb722a..5dc7f1567 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -10,6 +10,15 @@ namespace :mastodon do puts "Congrats! #{user.account.username} is now an admin. \\o/\nNavigate to #{admin_settings_url} to get started" end + desc 'Manually confirms a user with associated user email address stored in USER_EMAIL environment variable.' + task confirm_email: :environment do + email = ENV.fetch('USER_EMAIL') + user = User.where(email: email) + user.update(confirmed_at: Time.now.utc) + + puts "User #{email} confirmed." + end + namespace :media do desc 'Removes media attachments that have not been assigned to any status for longer than a day' task clear: :environment do |