mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -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;
|
||||||
using Bit.Api.Auth.Models.Request.Accounts;
|
using Bit.Api.Auth.Models.Request.Accounts;
|
||||||
using Bit.Api.Models.Request;
|
using Bit.Api.Models.Request;
|
||||||
@ -207,8 +207,10 @@ public class DevicesController : Controller
|
|||||||
|
|
||||||
[AllowAnonymous]
|
[AllowAnonymous]
|
||||||
[HttpGet("knowndevice")]
|
[HttpGet("knowndevice")]
|
||||||
public async Task<bool> GetByIdentifierQuery([FromHeader] KnownDeviceRequestModel request)
|
public async Task<bool> GetByIdentifierQuery(
|
||||||
=> await GetByIdentifier(CoreHelpers.Base64UrlDecodeString(request.Email), request.DeviceIdentifier);
|
[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.")]
|
[Obsolete("Path is deprecated due to encoding issues, use /knowndevice instead.")]
|
||||||
[AllowAnonymous]
|
[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