From a1a7d6dd965a313029273b66a54d0f66a567d65c Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 25 Feb 2024 15:38:00 +0000 Subject: [PATCH] refactor: move BlogApiController to Api folder --- OliverBooth/Controllers/{Blog => Api}/BlogApiController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename OliverBooth/Controllers/{Blog => Api}/BlogApiController.cs (98%) diff --git a/OliverBooth/Controllers/Blog/BlogApiController.cs b/OliverBooth/Controllers/Api/BlogApiController.cs similarity index 98% rename from OliverBooth/Controllers/Blog/BlogApiController.cs rename to OliverBooth/Controllers/Api/BlogApiController.cs index 96de884..d11e09d 100644 --- a/OliverBooth/Controllers/Blog/BlogApiController.cs +++ b/OliverBooth/Controllers/Api/BlogApiController.cs @@ -4,7 +4,7 @@ using OliverBooth.Data.Blog; using OliverBooth.Data.Web; using OliverBooth.Services; -namespace OliverBooth.Controllers.Blog; +namespace OliverBooth.Controllers.Api; /// /// Represents a controller for the blog API.