Skip to content

Commit

Permalink
HOME-2302: added me endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
VSevostianov committed Mar 6, 2025
1 parent b61135e commit e27f8c1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/collections/contributors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ export class Contributors extends BaseCollection<Contributor> {
return this.doGet(contributor_id, request_params);
}

me(
request_params: ProjectOnly,
): Promise<Contributor> {
return this.doGet('me', request_params);
}

update(
contributor_id: string | number,
contributor_params: ContributorUpdateData,
Expand Down

0 comments on commit e27f8c1

Please sign in to comment.