Updated tests

This commit is contained in:
Sergei Tsoganov 2023-06-29 13:01:57 +03:00
parent de9921d667
commit 66a8ea111f
4 changed files with 15 additions and 14 deletions

View file

@ -9,7 +9,7 @@ class CertificateMailer < ApplicationMailer
def signed(email:, api_user:, crt:)
@crt = crt
@api_user = api_user
subject = "Certificate Signing Confirmation for API User '#{@api_user.username}'"
subject = 'Certificate Signing Confirmation'
mail(to: email, subject: subject)
end
end