Packages

final case class Session(expiry: Instant, github: AccessToken, user: User) extends Product with Serializable

this is the data that we store (encrypted) into the cookie stored on users browsers.

Source
Session.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Session
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Session(expiry: Instant, github: AccessToken, user: User)

Value Members

  1. val expiry: Instant
  2. val github: AccessToken
  3. val user: User