1
0
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:
Derek Nance
2026-02-10 15:26:19 -06:00
committed by GitHub
parent c1ee27f42c
commit de330e987d
2 changed files with 8 additions and 8 deletions

View File

@@ -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)}";
}
}