Skip to content

Commit

Permalink
Pass avatar_url un git-gateway backend
Browse files Browse the repository at this point in the history
  • Loading branch information
loteoo committed Jul 5, 2024
1 parent 232b012 commit 51af72c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export default class GitGateway implements Implementation {
if (!(await this.api!.hasWriteAccess())) {
throw new Error("You don't have sufficient permissions to access Decap CMS");
}
return { name: userData.name, login: userData.email } as User;
return { name: userData.name, login: userData.email, avatar_url: userData.avatar_url } as User;
});
}
async restoreUser() {
Expand Down

0 comments on commit 51af72c

Please sign in to comment.