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

io.udash.auth.UserCtx.scala Maven / Gradle / Ivy

package io.udash.auth

trait UserCtx {
  def has(permission: Permission): Boolean
  def isAuthenticated: Boolean
}

object UserCtx {
  trait Unauthenticated extends UserCtx {
    override def has(permission: Permission): Boolean = false
    override def isAuthenticated: Boolean = false
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy