inbox: store user's inbox keys (#47)

This commit is contained in:
01zulfi
2025-09-06 09:32:44 +05:00
committed by GitHub
parent 201a235357
commit 34a09ad15d
5 changed files with 24 additions and 1 deletions

View File

@@ -77,7 +77,8 @@ namespace Notesnook.API.Controllers
var keys = new UserKeys
{
AttachmentsKey = user.AttachmentsKey,
MonographPasswordsKey = user.MonographPasswordsKey
MonographPasswordsKey = user.MonographPasswordsKey,
InboxKeys = user.InboxKeys
};
await UserService.SetUserKeysAsync(userId, keys);
return Ok();