Add /time/{id}/rank #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Old API had a way to get the placement of a time, but the updated one doesn't.
Additionally, could this endpoint also return how many times total are on the map? Would help with displaying a user's placement on a map Nth/X (9th/302).
I’ll look into adding the total. I’ve got a fairly efficient query that avoids full table scans, so it runs pretty fast. But adding the total would basically double the execution time, so I need to consider if it’s worth it since the game servers are calling this too.
Just to get ahead of the suggestion, I’m not looking to create or maintain a bunch of public API exclusive queries or toggles.
That makes sense. I can use the /times/ API to get the number of times on a given map via the total items so it's not a big deal either way.