summaryrefslogtreecommitdiffstats
path: root/rust_team_data/src/v1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust_team_data/src/v1.rs')
-rw-r--r--rust_team_data/src/v1.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/rust_team_data/src/v1.rs b/rust_team_data/src/v1.rs
index 50edebd..839c66d 100644
--- a/rust_team_data/src/v1.rs
+++ b/rust_team_data/src/v1.rs
@@ -23,6 +23,7 @@ pub struct Team {
pub struct TeamMember {
pub name: String,
pub github: String,
+ pub github_id: usize,
pub is_lead: bool,
}
@@ -63,6 +64,7 @@ pub struct Lists {
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Permission {
pub github_users: Vec<String>,
+ pub github_ids: Vec<usize>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]