# frozen_string_literal: true AuthStrategist.configure do |c| # Set strategies directory path and load if they are not autoloaded # c.strategies_path = 'lib/auth_strategist/strategies' # c.load_strategies! end # Register your strategies AuthStrategist.strategies do |s| # E.g. # s.register :ownership, OwnershipAuthStrategy # s.register 'ownership.book', BookOwnershipAuthStrategy end