Ivan Klass
Ivan Klass
@adamw if we can add a substitution attribute to core, I can help with a PR. Could you please suggest a name / package?
I was aslo trying to replace server implementation Blaze to Ember here - https://github.com/softwaremill/tapir/pull/4185 and it seems that a similar issue might be involved
@ldeluigi you can use an `.aggregate` exactly for that ```sbt val root = crossProject(JSPlatform, JVMPlatform, NativePlatform) .in(file(".")) .aggregate(project1, project2) ``` then `rootJVM/compile` - compiles `project1JVM` and `project2JVM`
I've end up using Composite Naming Strategy `Quill.Postgres.fromNamingStrategy(CompositeNamingStrategy2(SnakeCase, PostgresEscape))` This solves the problem
@Jugbot the discriminator make no sense in the context of a single class - If you're encoding or decoding only "Test" instances - which your code does, there's nothing to...