release/1.0.8-rc1 #42

Merged
notazof merged 47 commits from release/1.0.8-rc1 into main 2026-08-23 23:19:07 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit ecfdca8f01 - Show all commits

gixes the path to circles API

Paul Schneider 2026-08-19 21:02:28 +01:00
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

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;