summaryrefslogtreecommitdiffstats
path: root/user_db/src/lib_user_db.rs
diff options
context:
space:
mode:
Diffstat (limited to 'user_db/src/lib_user_db.rs')
-rw-r--r--user_db/src/lib_user_db.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/user_db/src/lib_user_db.rs b/user_db/src/lib_user_db.rs
index 5a8a47e..03feb04 100644
--- a/user_db/src/lib_user_db.rs
+++ b/user_db/src/lib_user_db.rs
@@ -52,6 +52,7 @@ impl UserDb {
gravatar_id: row.get_unwrap(4),
html_url: row.get_unwrap(5),
blog: None,
+ created_at: None,
user_type: match row.get_raw(6).as_str().unwrap() {
"org" => UserType::Org,
"bot" => UserType::Bot,
@@ -88,6 +89,7 @@ impl UserDb {
gravatar_id: row.get_unwrap(4),
html_url: row.get_unwrap(5),
blog: None,
+ created_at: None,
user_type: match row.get_raw(6).as_str().unwrap() {
"org" => UserType::Org,
"bot" => UserType::Bot,