1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 03:33:35 +00:00

Delete all seeded data

Fixup single user recipe to inform of seeded entities
This commit is contained in:
Matt Gibson
2025-10-09 15:36:29 -07:00
parent d93cd50818
commit 431a708914
5 changed files with 72 additions and 18 deletions

View File

@@ -1,4 +1,5 @@
using System.Text.Json;
using System.Text.Json;
using Bit.Infrastructure.EntityFramework.Models;
namespace Bit.SeederApi.Services;
@@ -21,4 +22,5 @@ public interface IRecipeService
/// <returns>The result of the destroy operation</returns>
/// <exception cref="RecipeExecutionException">Thrown when there's an error destroying the seeded data</exception>
object? DestroyRecipe(Guid seedId);
List<SeededData> GetAllSeededData();
}