This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Merge branch 'master' into payouts-code #558
Annotations
1 error and 2 warnings
unresolved imports `crate::models::users::PayoutStatus`, `crate::models::users::RecipientStatus`:
src/routes/v3/admin.rs#L7
error[E0432]: unresolved imports `crate::models::users::PayoutStatus`, `crate::models::users::RecipientStatus`
--> src/routes/v3/admin.rs:7:28
|
7 | use crate::models::users::{PayoutStatus, RecipientStatus};
| ^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ no `RecipientStatus` in `models::v3::users`
| |
| no `PayoutStatus` in `models::v3::users`
|
= help: consider importing this enum instead:
crate::models::payouts::PayoutStatus
|
security_audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
unused import: `oauth_clients::get_user_clients`:
src/routes/v3/users.rs#L26
warning: unused import: `oauth_clients::get_user_clients`
--> src/routes/v3/users.rs:26:13
|
26 | use super::{oauth_clients::get_user_clients, ApiError};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|