From 1f9ac26826f58ba9705a158d309c844c8c1cf1a4 Mon Sep 17 00:00:00 2001 From: mayur nilwant Date: Fri, 12 Jul 2024 10:11:34 -0400 Subject: [PATCH] Added MCE button model --- MVMCore/MVMCore/Models/ModelMapping.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MVMCore/MVMCore/Models/ModelMapping.swift b/MVMCore/MVMCore/Models/ModelMapping.swift index a7f546c..f13d1bd 100644 --- a/MVMCore/MVMCore/Models/ModelMapping.swift +++ b/MVMCore/MVMCore/Models/ModelMapping.swift @@ -25,5 +25,6 @@ ModelRegistry.register(handler: ActionActionsHandler.self, for: ActionActionsModel.self) ModelRegistry.register(handler: ActionOpenSMSHandler.self, for: ActionOpenSMSModel.self) ModelRegistry.register(handler: ActionContactHandler.self, for: ActionContactModel.self) + ModelRegistry.register(handler: ActionLaunchMCEHandler.self, for: ActionLaunchMCEModel.self) } }