Will Sargent
Will Sargent
Apparently if you want to keep the offset, you should add a distinct value in seconds, and then map the offset from there https://stackoverflow.com/questions/54189839/how-to-store-offsetdatetime-to-postgresql-timestamp-with-time-zone-column
1.1.6: https://github.com/wsargent/ocaps/blob/master/build.sbt and https://github.com/wsargent/ocaps/blob/master/project/OcapsPlugin.scala
I'm also interested in using code fences (aka "verbatim") with scalafiddle out of the box by specifying it as "scala scalafiddle", which is something that should be available according to...
The way that we've handled this in the past is to use the logstash-logback-encoder with JSON composite layout https://github.com/logstash/logstash-logback-encoder#composite-encoderlayout and then set up a context through use of LogstashMarkers that...
@akkie I think this is a good practice because people will want to customize the request, also see the XXX bits for where traits would be used.
Also see https://discourse.silhouette.rocks/t/extending-securedrequest-with-actionrefiner/167
I did some refactoring and switched to ActionTransformer. Does this work? ```scala abstract class SomeAbstractController @Inject() (controllerComponents: SilhouetteControllerComponents) { type SecuredEnvRequest[A] = SecuredRequest[DefaultEnv, A] protected abstract class AbstractActionTransformer[-R[_], +P[_]](cc: SilhouetteControllerComponents)...
Okay, broken out some more.
@akkie updated with comment fixes
@akkie how does it look?