fix: mut vs immut repo fields

This commit is contained in:
orion 2023-11-28 10:49:53 -06:00
parent fc37992181
commit d52674fad9
Signed by: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -250,22 +250,16 @@ type RepoSectionVisibilityImmutable r =
type RepoSectionProfileMutable r =
( "avatar_url" :: String
, "description" :: String
, "language" :: String
, "languages_url" :: String
, "link" :: String
, "original_url" :: String
, "website" :: String
| r
)
type RepoSectionProfileImmutable r =
( "avatar_url" :: String
, "description" :: String
, "language" :: String
, "languages_url" :: String
, "link" :: String
, "original_url" :: String
, "website" :: String
| r
)