Merge remote-tracking branch 'origin/master' into merge-upstream
Conflicts: app/javascript/styles/mastodon/components.scss app/javascript/styles/mastodon/modal.scss
This commit is contained in:
@@ -69,6 +69,12 @@ describe ApplicationController, type: :controller do
|
||||
expect(RegenerationWorker).to have_received(:perform_async)
|
||||
end
|
||||
|
||||
it 'sets the regeneration marker to expire' do
|
||||
allow(RegenerationWorker).to receive(:perform_async)
|
||||
get :show
|
||||
expect(Redis.current.ttl("account:#{user.account_id}:regeneration")).to be >= 0
|
||||
end
|
||||
|
||||
it 'regenerates feed when sign in is older than two weeks' do
|
||||
get :show
|
||||
|
||||
|
||||
@@ -29,4 +29,9 @@ class UserMailerPreview < ActionMailer::Preview
|
||||
def reset_password_instructions
|
||||
UserMailer.reset_password_instructions(User.first, 'spec')
|
||||
end
|
||||
|
||||
# Preview this email at http://localhost:3000/rails/mailers/user_mailer/welcome
|
||||
def welcome
|
||||
UserMailer.welcome(User.first)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user