Skip to content

Commit

Permalink
fix: set repo.owner.admin to optional (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
plyr4 committed Apr 22, 2024
1 parent fcd9ccb commit 114ef5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elm/Vela.elm
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ decodeUser =
|> required "name" string
|> optional "favorites" (Json.Decode.list string) []
|> required "active" bool
|> required "admin" bool
|> optional "admin" bool False


emptyUser : User
Expand Down

0 comments on commit 114ef5f

Please sign in to comment.