We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
oauth_refresh_token
identity::Account
1 parent f0cacb0 commit dc9b103Copy full SHA for dc9b103
gix-sec/src/identity.rs
@@ -8,6 +8,8 @@ pub struct Account {
8
pub username: String,
9
/// The user's password
10
pub password: String,
11
+ /// An OAuth refresh token that may accompany the password. It is to be treated confidentially, just like the password.
12
+ pub oauth_refresh_token: Option<String>,
13
}
14
15
/// Returns true if the given `path` is owned by the user who is executing the current process.
0 commit comments