| 446 | #[derive(Debug, Serialize)] |
| 447 | #[serde(rename_all = "snake_case")] |
| 448 | pub(crate) struct AddMemberRequest { |
| 449 | pub identity_id: Uuid, |
| 450 | pub role: OrgRole, |
| 451 | } |
| 452 | |
| 453 | /// Body for updating an organization member's role. |
| 454 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected