This commit is contained in:
24c02 2026-01-30 13:57:48 -05:00
parent ae63185445
commit 5c86b71d34
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
# frozen_string_literal: true
BlindIndex.master_key = ENV.fetch("BLIND_INDEX_MASTER_KEY")
BlindIndex.master_key = ENV["BLIND_INDEX_MASTER_KEY"] if ENV["BLIND_INDEX_MASTER_KEY"].present?

View file

@ -1,3 +1,3 @@
# frozen_string_literal: true
Lockbox.master_key = ENV.fetch("LOCKBOX_MASTER_KEY")
Lockbox.master_key = ENV["LOCKBOX_MASTER_KEY"] if ENV["LOCKBOX_MASTER_KEY"].present?