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
Showing only changes of commit 404d406931 - Show all commits

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

Paul Schneider 2026-08-21 17:21:54 +01:00
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)
{ {