validation for languages+countries+translations+mails

This commit is contained in:
2022-01-23 18:32:22 +01:00
parent e2e1614fbd
commit 34cafb399b
22 changed files with 182 additions and 132 deletions
@@ -145,7 +145,7 @@ public class IntegrationStore : IIntegrationStore
return Result<Integration>.Fail("@integration.errors.alreadycreated");
}
return await Operations.Create(model, async x => await Validate(x));
return await Operations.Create(model, async (x, ctx) => await Validate(x));
}
}