Refactor Home UI controls and add dice to campaign log entries

This commit is contained in:
2026-02-26 09:22:29 +01:00
parent 96238a9341
commit 2d1bf9b9b7
20 changed files with 774 additions and 255 deletions

View File

@@ -65,6 +65,8 @@ public sealed class ServiceSkillRollTests
Assert.Equal(2, ServiceTestSupport.GetValue(ownerLog).Count);
Assert.Equal(2, ServiceTestSupport.GetValue(gmLog).Count);
Assert.False(outsiderLog.Succeeded);
Assert.All(ServiceTestSupport.GetValue(ownerLog), entry => Assert.NotEmpty(entry.Dice));
Assert.All(ServiceTestSupport.GetValue(gmLog), entry => Assert.NotEmpty(entry.Dice));
var version = service.GetCampaignVersion(ownerSession, campaign.Id);
var missingVersion = service.GetCampaignVersion(ownerSession, Guid.NewGuid());