Fix enpass adapter

There were changes in main that meant the tests failed after merging.

Adding the new `requires_account?` method to the enpass adapter fixed it.
This commit is contained in:
Donal McBreen
2025-01-17 12:05:28 +00:00
parent 93133cd7a9
commit db7556ed99

View File

@@ -14,6 +14,10 @@ class Kamal::Secrets::Adapters::Enpass < Kamal::Secrets::Adapters::Base
fetch_secrets(secrets, from)
end
def requires_account?
false
end
private
def fetch_secrets(secrets, vault)
secrets_titles = fetch_secret_titles(secrets)