gixes the path to circles API

This commit is contained in:
Paul Schneider 2026-08-19 21:02:28 +01:00
commit ecfdca8f01
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,6 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Yavsc.Blogspot;
using Yavsc.Models.Blog;
using Yavsc.Server.Exceptions;
using Yavsc.Server.Helpers;
using static Yavsc.Blogs.Constants;

View file

@ -4,11 +4,12 @@ using Microsoft.EntityFrameworkCore;
using Yavsc.Models;
using Yavsc.Models.Relationship;
using Yavsc.Server.Helpers;
using static Yavsc.Blogs.Constants;
namespace Yavsc.Blogs.Controllers
{
[Produces("application/json")]
[Route("api/circle")]
[Route(APIPrefix +"/circle")]
public class CircleApiController : Controller
{
private readonly ApplicationDbContext _context;