Revert "feat(PluginInstaller): implement AcceptsFeedback, FeedbackMessage"

This reverts commit 785df95071.
This commit is contained in:
goat 2021-11-18 15:18:14 +01:00
parent 0ef97c3b7c
commit dde9c7eb85
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5
2 changed files with 2 additions and 22 deletions

View file

@ -161,19 +161,4 @@ internal record PluginManifest
/// Gets an URL for the plugin's icon.
/// </summary>
public string? IconUrl { get; init; }
/// <summary>
/// Gets a value that indicates whether or not this plugin accepts feedback.
/// </summary>
public bool AcceptsFeedback { get; init; } = true;
/// <summary>
/// Gets a message that is shown to users when sending feedback.
/// </summary>
public string? FeedbackMessage { get; init; }
/// <summary>
/// Gets a value indicating the webhook URL feedback is sent to.
/// </summary>
public string? FeedbackWebhook { get; init; }
}