mirror of
https://github.com/bitwarden/server
synced 2026-02-14 15:33:35 +00:00
[PM-32007] Use kebab instead of snake case for cookie vendor (#6977)
This commit is contained in:
@@ -3,7 +3,7 @@ using Bit.Core.Utilities;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Bit.Api.Controllers;
|
||||
namespace Bit.Api.Platform.SsoCookieVendor;
|
||||
|
||||
/// <summary>
|
||||
/// Provides an endpoint to read an SSO cookie and redirect to a custom URI
|
||||
@@ -114,6 +114,6 @@ public class SsoCookieVendorController(IGlobalSettings globalSettings) : Control
|
||||
// event a user agent decides the URI is too long.
|
||||
queryParams.Add("d=1");
|
||||
|
||||
return $"bitwarden://sso_cookie_vendor?{string.Join("&", queryParams)}";
|
||||
return $"bitwarden://sso-cookie-vendor?{string.Join("&", queryParams)}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user