move billing secret to application.yml

This commit is contained in:
olegphenomenon 2022-03-29 13:25:24 +03:00
parent 204629a62b
commit 5aacaef006
3 changed files with 4 additions and 3 deletions

View file

@ -31,7 +31,7 @@ module EisBilling
end
def self.billing_secret
Rails.application.credentials.config[:billing_secret]
ENV['billing_secret']
end
end
end