mirror of
https://github.com/bitwarden/server
synced 2026-01-08 03:23:20 +00:00
[AC-1608] Send offboarding survey response to Stripe on subscription cancellation (#3734)
* 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]
This commit is contained in:
8
src/Core/Billing/Models/OffboardingSurveyResponse.cs
Normal file
8
src/Core/Billing/Models/OffboardingSurveyResponse.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Bit.Core.Billing.Models;
|
||||
|
||||
public class OffboardingSurveyResponse
|
||||
{
|
||||
public Guid UserId { get; set; }
|
||||
public string Reason { get; set; }
|
||||
public string Feedback { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user