All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.unsecurity.SecurityContext.scala Maven / Gradle / Ivy

There is a newer version: 2.0-M15
Show newest version
package io.unsecurity

import no.scalabin.http4s.directives.Directive

trait SecurityContext[F[_], RU, U] {
  def authenticate: Directive[F, RU]
  def xsrfCheck: Directive[F, String]
  def transformUser(rawUser: RU): F[Option[U]]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy