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

     1  module Dashboard.Group.Models exposing (Group, Pipeline)
     2  
     3  
     4  type alias Group =
     5      { pipelines : List Pipeline
     6      , teamName : String
     7      }
     8  
     9  
    10  type alias Pipeline =
    11      { id : Int
    12      , name : String
    13      , teamName : String
    14      , public : Bool
    15      , isToggleLoading : Bool
    16      , isVisibilityLoading : Bool
    17      , paused : Bool
    18      , archived : Bool
    19      , stale : Bool
    20      , jobsDisabled : Bool
    21      }