Skip to content

Commit

Permalink
Adds user confirmation rake task (mastodon#1300)
Browse files Browse the repository at this point in the history
* Adds task to confirm user by email.

* Adds documentation for manual confirmation.
  • Loading branch information
ashfurrow authored and wxcafe committed Apr 8, 2017
1 parent b89f007 commit 6e39255
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/Running-Mastodon/Administration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ You are able to set the following settings:
- Site extended description

You may wish to use the extended description (shown at https://yourmastodon.instance/about/more ) to display content guidelines or a user agreement (see https://mastodon.social/about/more for an example).

## Confirming Users Manually

The following rake task:

RAILS_ENV=production bundle exec rails mastodon:confirm_email [email protected]

Will confirm a user manually, in case they don't have access to their confirmation email for whatever reason.
9 changes: 9 additions & 0 deletions lib/tasks/mastodon.rake
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6e39255

Please sign in to comment.