From cb9163e5aa770a225501781d0eb0dad1b98cff1c Mon Sep 17 00:00:00 2001 From: Tomas D'Stefano Date: Tue, 27 Jan 2026 09:55:09 +0000 Subject: [PATCH] Add model to the autoload Forgot to be added --- lib/dfe/wizard.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/dfe/wizard.rb b/lib/dfe/wizard.rb index d33528a..1712af3 100644 --- a/lib/dfe/wizard.rb +++ b/lib/dfe/wizard.rb @@ -139,10 +139,11 @@ module Operations # @api public module Repository autoload :Base, 'dfe/wizard/repository/base' + autoload :Cache, 'dfe/wizard/repository/cache' autoload :InMemory, 'dfe/wizard/repository/in_memory' - autoload :Session, 'dfe/wizard/repository/session' + autoload :Model, 'dfe/wizard/repository/model' autoload :Redis, 'dfe/wizard/repository/redis' - autoload :Cache, 'dfe/wizard/repository/cache' + autoload :Session, 'dfe/wizard/repository/session' autoload :WizardState, 'dfe/wizard/repository/wizard_state' end # @!endgroup