From 3e1a8e841924eb65c8589a0bcc65f35624e93068 Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Sun, 6 Aug 2023 13:32:35 -0700 Subject: [PATCH] Using updates --- Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs | 2 +- Newsbot.Collector.Api/Controllers/v1/IdentityController.cs | 2 +- Newsbot.Collector.Api/Controllers/v1/RssController.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs b/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs index d33cba1..5937767 100644 --- a/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs +++ b/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs @@ -3,7 +3,7 @@ using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Options; -using Newsbot.Collector.Api.Domain; +using Newsbot.Collector.Api.Domain.Consts; using Newsbot.Collector.Domain.Models.Config; using Newsbot.Collector.Services.Jobs; diff --git a/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs b/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs index b260be5..aac302c 100644 --- a/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs +++ b/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; -using Newsbot.Collector.Api.Domain; +using Newsbot.Collector.Api.Domain.Consts; using Newsbot.Collector.Domain.Requests; using Newsbot.Collector.Domain.Response; using Newsbot.Collector.Domain.Results; diff --git a/Newsbot.Collector.Api/Controllers/v1/RssController.cs b/Newsbot.Collector.Api/Controllers/v1/RssController.cs index 9b31637..bda6e84 100644 --- a/Newsbot.Collector.Api/Controllers/v1/RssController.cs +++ b/Newsbot.Collector.Api/Controllers/v1/RssController.cs @@ -3,7 +3,7 @@ using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Options; -using Newsbot.Collector.Api.Domain; +using Newsbot.Collector.Api.Domain.Consts; using Newsbot.Collector.Domain.Models.Config; using Newsbot.Collector.Domain.Models.Config.Sources; using Newsbot.Collector.Services.Jobs;