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
- Alphabetic
- By Inheritance
Inherited
- Session
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Session(expiry: Instant, github: AccessToken, user: User)
Value Members
- val expiry: Instant
- val github: AccessToken
- val user: User