Change mastodon:webpush:generate_vapid_key task to not require functional env (#17338)

Fixes #17297
This commit is contained in:
Claire 2022-01-20 14:51:23 +01:00 committed by GitHub
parent 6eea3f8f9c
commit 1e8c885e5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ namespace :mastodon do
namespace :webpush do
desc 'Generate VAPID key'
task generate_vapid_key: :environment do
task :generate_vapid_key do
vapid_key = Webpush.generate_key
puts "VAPID_PRIVATE_KEY=#{vapid_key.private_key}"
puts "VAPID_PUBLIC_KEY=#{vapid_key.public_key}"