Testing circle was authorized
Some checks failed
Dotnet build and test / build (pull_request) Has been cancelled

This commit is contained in:
Paul Schneider 2026-08-21 17:21:54 +01:00
commit 404d406931
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

View file

@ -7,7 +7,6 @@ using CommunityToolkit.Mvvm.Input;
using Yavsc.Blogspot; using Yavsc.Blogspot;
using Yavsc.Api.Client; using Yavsc.Api.Client;
using Yavsc.Api.Client.Dtos; using Yavsc.Api.Client.Dtos;
using Yavsc.Abstract.Identity.Security;
using Yavsc.Abstract.BlogSpot; using Yavsc.Abstract.BlogSpot;
namespace PostIt.ViewModels; namespace PostIt.ViewModels;
@ -129,7 +128,8 @@ public partial class PostAclDialogViewModel : ViewModelBase
{ {
var created = await _aclClient.GrantAsync(new Yavsc.Abstract.BlogSpot.PostAccessControlRulePayload var created = await _aclClient.GrantAsync(new Yavsc.Abstract.BlogSpot.PostAccessControlRulePayload
{ {
CircleId = SelectedCircleToAdd.Id CircleId = SelectedCircleToAdd.Id,
BlogPostId = Post.Id
}); });
if (created is not null) if (created is not null)
{ {