mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-07-06 02:47:51 +02:00
inbox: use separate model for CreateInboxApiKeyRequest
This commit is contained in:
@@ -63,7 +63,7 @@ namespace Notesnook.API.Controllers
|
||||
|
||||
[HttpPost("api-keys")]
|
||||
[Authorize(Policy = "Notesnook")]
|
||||
public async Task<IActionResult> CreateApiKeyAsync([FromBody] InboxApiKey request)
|
||||
public async Task<IActionResult> CreateApiKeyAsync([FromBody] CreateInboxApiKeyRequest request)
|
||||
{
|
||||
var userId = User.GetUserId();
|
||||
try
|
||||
|
||||
@@ -24,6 +24,15 @@ using NanoidDotNet;
|
||||
|
||||
namespace Notesnook.API.Models
|
||||
{
|
||||
public class CreateInboxApiKeyRequest
|
||||
{
|
||||
[JsonPropertyName("name")]
|
||||
public required string Name { get; set; }
|
||||
|
||||
[JsonPropertyName("expiryDate")]
|
||||
public long ExpiryDate { get; set; }
|
||||
}
|
||||
|
||||
public class InboxApiKey
|
||||
{
|
||||
public InboxApiKey()
|
||||
|
||||
Reference in New Issue
Block a user