This commit is contained in:
aayush262
2024-04-08 17:45:18 +05:30
parent 87535a9239
commit 9b6dc1318d
7 changed files with 90 additions and 95 deletions

View File

@@ -30,6 +30,16 @@ class Contributors {
"Owner and Maintainer",
first.htmlUrl
)
)
}
res.filter {it.login != "rebelonion"}.forEach {
developers = developers.plus(
Developer(
it.login,
it.avatarUrl,
"Contributor",
it.htmlUrl
)
).plus(arrayOf(
Developer(
"Wai What",
@@ -57,16 +67,6 @@ class Contributors {
)
))
}
res.filter {it.login != "rebelonion"}.forEach {
developers = developers.plus(
Developer(
it.login,
it.avatarUrl,
"Contributor",
it.htmlUrl
)
)
}
}
return developers
}