github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/web/elm/src/Application/Models.elm (about)

     1  module Application.Models exposing (Session)
     2  
     3  import Concourse
     4  import SideBar.SideBar as SideBar
     5  import Time
     6  import UserState exposing (UserState)
     7  
     8  
     9  type alias Session =
    10      SideBar.Model
    11          { userState : UserState
    12          , clusterName : String
    13          , version : String
    14          , turbulenceImgSrc : String
    15          , notFoundImgSrc : String
    16          , csrfToken : Concourse.CSRFToken
    17          , authToken : String
    18          , pipelineRunningKeyframes : String
    19          , timeZone : Time.Zone
    20          }