Rename LOCAL_AUTHENTICATION to OSS_CONFIG

This commit is contained in:
Mike Dalessio
2025-10-02 15:18:11 -04:00
parent 3cc0fd8c1f
commit 320558919c
13 changed files with 86 additions and 125 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
module Bootstrap
def self.local_authentication?
ENV.fetch("LOCAL_AUTHENTICATION", "") != "" || !File.directory?(File.expand_path("../gems/fizzy-saas", __dir__))
def self.oss_config?
ENV.fetch("OSS_CONFIG", "") != "" || !File.directory?(File.expand_path("../gems/fizzy-saas", __dir__))
end
end