Use git config --global user.email
for email address in automatic Co-authored-by
(#32624)
Release Notes: - Automatic population of `Co-authored-by` now uses `git config --global user.email` --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Conrad <conrad@zed.dev>
This commit is contained in:
parent
e56a027bea
commit
7d708c14e4
24 changed files with 188 additions and 69 deletions
|
@ -118,6 +118,8 @@ impl Database {
|
|||
user_id: collaborator.user_id.to_proto(),
|
||||
replica_id: collaborator.replica_id.0 as u32,
|
||||
is_host: false,
|
||||
committer_name: None,
|
||||
committer_email: None,
|
||||
})
|
||||
.collect(),
|
||||
})
|
||||
|
@ -225,6 +227,8 @@ impl Database {
|
|||
user_id: collaborator.user_id.to_proto(),
|
||||
replica_id: collaborator.replica_id.0 as u32,
|
||||
is_host: false,
|
||||
committer_name: None,
|
||||
committer_email: None,
|
||||
})
|
||||
.collect(),
|
||||
},
|
||||
|
@ -261,6 +265,8 @@ impl Database {
|
|||
replica_id: db_collaborator.replica_id.0 as u32,
|
||||
user_id: db_collaborator.user_id.to_proto(),
|
||||
is_host: false,
|
||||
committer_name: None,
|
||||
committer_email: None,
|
||||
})
|
||||
} else {
|
||||
collaborator_ids_to_remove.push(db_collaborator.id);
|
||||
|
@ -390,6 +396,8 @@ impl Database {
|
|||
replica_id: row.replica_id.0 as u32,
|
||||
user_id: row.user_id.to_proto(),
|
||||
is_host: false,
|
||||
committer_name: None,
|
||||
committer_email: None,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -739,7 +739,6 @@ impl Database {
|
|||
),
|
||||
github_login: user.github_login,
|
||||
name: user.name,
|
||||
email: user.email_address,
|
||||
})
|
||||
}
|
||||
proto::ChannelMember {
|
||||
|
|
|
@ -98,7 +98,9 @@ impl Database {
|
|||
user_id: ActiveValue::set(participant.user_id),
|
||||
replica_id: ActiveValue::set(ReplicaId(replica_id)),
|
||||
is_host: ActiveValue::set(true),
|
||||
..Default::default()
|
||||
id: ActiveValue::NotSet,
|
||||
committer_name: ActiveValue::Set(None),
|
||||
committer_email: ActiveValue::Set(None),
|
||||
}
|
||||
.insert(&*tx)
|
||||
.await?;
|
||||
|
@ -784,13 +786,27 @@ impl Database {
|
|||
project_id: ProjectId,
|
||||
connection: ConnectionId,
|
||||
user_id: UserId,
|
||||
committer_name: Option<String>,
|
||||
committer_email: Option<String>,
|
||||
) -> Result<TransactionGuard<(Project, ReplicaId)>> {
|
||||
self.project_transaction(project_id, |tx| async move {
|
||||
let (project, role) = self
|
||||
.access_project(project_id, connection, Capability::ReadOnly, &tx)
|
||||
.await?;
|
||||
self.join_project_internal(project, user_id, connection, role, &tx)
|
||||
self.project_transaction(project_id, move |tx| {
|
||||
let committer_name = committer_name.clone();
|
||||
let committer_email = committer_email.clone();
|
||||
async move {
|
||||
let (project, role) = self
|
||||
.access_project(project_id, connection, Capability::ReadOnly, &tx)
|
||||
.await?;
|
||||
self.join_project_internal(
|
||||
project,
|
||||
user_id,
|
||||
committer_name,
|
||||
committer_email,
|
||||
connection,
|
||||
role,
|
||||
&tx,
|
||||
)
|
||||
.await
|
||||
}
|
||||
})
|
||||
.await
|
||||
}
|
||||
|
@ -799,6 +815,8 @@ impl Database {
|
|||
&self,
|
||||
project: project::Model,
|
||||
user_id: UserId,
|
||||
committer_name: Option<String>,
|
||||
committer_email: Option<String>,
|
||||
connection: ConnectionId,
|
||||
role: ChannelRole,
|
||||
tx: &DatabaseTransaction,
|
||||
|
@ -822,7 +840,9 @@ impl Database {
|
|||
user_id: ActiveValue::set(user_id),
|
||||
replica_id: ActiveValue::set(replica_id),
|
||||
is_host: ActiveValue::set(false),
|
||||
..Default::default()
|
||||
id: ActiveValue::NotSet,
|
||||
committer_name: ActiveValue::set(committer_name),
|
||||
committer_email: ActiveValue::set(committer_email),
|
||||
}
|
||||
.insert(tx)
|
||||
.await?;
|
||||
|
@ -1026,6 +1046,8 @@ impl Database {
|
|||
user_id: collaborator.user_id,
|
||||
replica_id: collaborator.replica_id,
|
||||
is_host: collaborator.is_host,
|
||||
committer_name: collaborator.committer_name,
|
||||
committer_email: collaborator.committer_email,
|
||||
})
|
||||
.collect(),
|
||||
worktrees,
|
||||
|
|
|
@ -553,6 +553,8 @@ impl Database {
|
|||
user_id: collaborator.user_id,
|
||||
replica_id: collaborator.replica_id,
|
||||
is_host: collaborator.is_host,
|
||||
committer_name: collaborator.committer_name.clone(),
|
||||
committer_email: collaborator.committer_email.clone(),
|
||||
})
|
||||
.collect(),
|
||||
worktrees: reshared_project.worktrees.clone(),
|
||||
|
@ -857,6 +859,8 @@ impl Database {
|
|||
user_id: collaborator.user_id,
|
||||
replica_id: collaborator.replica_id,
|
||||
is_host: collaborator.is_host,
|
||||
committer_name: collaborator.committer_name,
|
||||
committer_email: collaborator.committer_email,
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
|
|
|
@ -13,6 +13,8 @@ pub struct Model {
|
|||
pub user_id: UserId,
|
||||
pub replica_id: ReplicaId,
|
||||
pub is_host: bool,
|
||||
pub committer_name: Option<String>,
|
||||
pub committer_email: Option<String>,
|
||||
}
|
||||
|
||||
impl Model {
|
||||
|
|
|
@ -126,12 +126,16 @@ async fn test_channel_buffers(db: &Arc<Database>) {
|
|||
peer_id: Some(rpc::proto::PeerId { id: 1, owner_id }),
|
||||
replica_id: 0,
|
||||
is_host: false,
|
||||
committer_name: None,
|
||||
committer_email: None,
|
||||
},
|
||||
rpc::proto::Collaborator {
|
||||
user_id: b_id.to_proto(),
|
||||
peer_id: Some(rpc::proto::PeerId { id: 2, owner_id }),
|
||||
replica_id: 1,
|
||||
is_host: false,
|
||||
committer_name: None,
|
||||
committer_email: None,
|
||||
}
|
||||
]
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue