1
0
mirror of https://github.com/bitwarden/server synced 2026-01-05 01:53:17 +00:00

Resolve some comments

This commit is contained in:
Hinton
2025-12-16 17:31:15 +01:00
parent 1f6300c1e7
commit 24a196785d
5 changed files with 11 additions and 27 deletions

View File

@@ -23,9 +23,10 @@ public class SceneService(
public List<string> GetAllPlayIds()
{
return [.. databaseContext.PlayData
return databaseContext.PlayData
.Select(pd => pd.PlayId)
.Distinct()];
.Distinct()
.ToList();
}
public async Task<SceneResponseModel> ExecuteScene(string templateName, JsonElement? arguments)