You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/config/initializers/clerk.rb

11 lines
429 B

# frozen_string_literal: true
# Clerk SDK config — secret_key falls back to ENV['CLERK_SECRET_KEY'].
# The Rack middleware is auto-mounted when the SDK is required, which
# reads the __session cookie set by accounts.bloombilt.com on the apex
# .bloombilt.com domain and exposes the verified user via the `clerk`
# helper in controllers that include Clerk::Authenticatable.
Clerk.configure do |c|
c.logger = Rails.logger
end