| 419 | #[derive(Debug, Serialize)] |
| 420 | #[serde(rename_all = "snake_case")] |
| 421 | pub(crate) struct AddMemberRequest { |
| 422 | pub identity_id: Uuid, |
| 423 | pub role: OrgRole, |
| 424 | } |
| 425 | |
| 426 | /// Body for updating an organization member's role. |
| 427 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected