diff options
author | Zahary Karadjov <zahary@gmail.com> | 2017-04-30 21:57:13 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2017-04-30 21:57:13 +0300 |
commit | 622100adb6deb75cfb0fad4e4e94af9f0d7a232c (patch) | |
tree | 6fe763c8c48299b58fa1d2e1f6dce9041e76c6cb /web | |
parent | 9107e551f1a617d5c3d0c3dfef44c91422a1dd07 (diff) | |
download | Nim-622100adb6deb75cfb0fad4e4e94af9f0d7a232c.tar.gz |
close #5757
Diffstat (limited to 'web')
-rw-r--r-- | web/bountysource.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/web/bountysource.nim b/web/bountysource.nim index 8d4f36bf0..5dfdb4497 100644 --- a/web/bountysource.nim +++ b/web/bountysource.nim @@ -29,8 +29,6 @@ proc newBountySource(team, token: string): BountySource = result.client.headers["Referer"] = "https://salt.bountysource.com/teams/nim/admin/supporters" result.client.headers["Origin"] = "https://salt.bountysource.com/" -import typetraits - proc getSupporters(self: BountySource): Future[JsonNode] {.async.} = let response = await self.client.get(apiUrl & "/supporters?order=monthly&per_page=200&team_slug=" & self.team) |