mirror of
https://github.com/bitwarden/server
synced 2025-12-10 05:13:48 +00:00
* Added offboarding survey response to cancellation when FF is on. * Removed service methods to prevent unnecessary upstream registrations * Forgot to actually remove the injected command in the services * Rui's feedback * Add missing summary * Missed [FromBody]
9 lines
221 B
C#
9 lines
221 B
C#
using Bit.Core.Exceptions;
|
|
|
|
namespace Bit.Core.Billing;
|
|
|
|
public static class Utilities
|
|
{
|
|
public static GatewayException ContactSupport() => new("Something went wrong with your request. Please contact support.");
|
|
}
|