Allow revenue analytics to bucket by user ID (#6428)

* adjust

* convert to sqlx macros

* Allow users on a team to see rev splits of other users

* prepare

* clarify comment
This commit is contained in:
aecsocket
2026-06-18 12:12:56 +00:00
committed by GitHub
parent 486b467af2
commit b3257a0614
9 changed files with 255 additions and 60 deletions
+1
View File
@@ -25,3 +25,4 @@
- `Modrinth-Admin: feedbeef` as admin key
- If some steps require you to create a project/mod or version for testing, ask the user to go into the web frontend and manually create a project/version
- When using `sqlx::query` etc. always use the macro form like `sqlx::query!` or `sqlx::query_scalar!` - never the plain function form. Avoid using `query_as!`.
- Do not run `cargo test`, even for a single specific test, unless explicitly prompted to by the user, since it takes a long time to run.