mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[PM-6137] Fix invalid Swagger generation in knowndevice (#3760)
* Fix invalid swagger generation in knowndevice * Format
This commit is contained in:
parent
1d9fe79ef6
commit
fd3f05da47
@ -1,4 +1,4 @@
|
||||
using Api.Models.Request;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Bit.Api.Auth.Models.Request;
|
||||
using Bit.Api.Auth.Models.Request.Accounts;
|
||||
using Bit.Api.Models.Request;
|
||||
@ -207,8 +207,10 @@ public class DevicesController : Controller
|
||||
|
||||
[AllowAnonymous]
|
||||
[HttpGet("knowndevice")]
|
||||
public async Task<bool> GetByIdentifierQuery([FromHeader] KnownDeviceRequestModel request)
|
||||
=> await GetByIdentifier(CoreHelpers.Base64UrlDecodeString(request.Email), request.DeviceIdentifier);
|
||||
public async Task<bool> GetByIdentifierQuery(
|
||||
[Required][FromHeader(Name = "X-Request-Email")] string Email,
|
||||
[Required][FromHeader(Name = "X-Device-Identifier")] string DeviceIdentifier)
|
||||
=> await GetByIdentifier(CoreHelpers.Base64UrlDecodeString(Email), DeviceIdentifier);
|
||||
|
||||
[Obsolete("Path is deprecated due to encoding issues, use /knowndevice instead.")]
|
||||
[AllowAnonymous]
|
||||
|
@ -1,16 +0,0 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Api.Models.Request;
|
||||
|
||||
public class KnownDeviceRequestModel
|
||||
{
|
||||
[Required]
|
||||
[FromHeader(Name = "X-Request-Email")]
|
||||
public string Email { get; set; }
|
||||
|
||||
[Required]
|
||||
[FromHeader(Name = "X-Device-Identifier")]
|
||||
public string DeviceIdentifier { get; set; }
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user