From 94393e232c59bdfec7b0a4843bd7364b419871b7 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Wed, 9 Feb 2022 18:11:00 +0000 Subject: [PATCH] Altered API Interface import --- Controllers/UserController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Controllers/UserController.cs b/Controllers/UserController.cs index 20af9ec..be02d7f 100644 --- a/Controllers/UserController.cs +++ b/Controllers/UserController.cs @@ -9,6 +9,7 @@ using EFB.Models.JSON; using Microsoft.Extensions.Logging; using EFB.Models; using EFB.Sessions; +using EFB.Controllers.API; namespace EFB.Controllers { @@ -33,7 +34,7 @@ namespace EFB.Controllers if (Form.FormAuthenticator.ValidateEMail(email)) { //API Helper - API.APIInterface API = new API.APIInterface(); + APIInterface API = new APIInterface(); //Dictionary of Formdata to be encoded Dictionary formData = new Dictionary();