Skip to content

Commit

Permalink
Merge e43d4ec into d6047f2
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed Jan 11, 2023
2 parents d6047f2 + e43d4ec commit f7167a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public async Task<int> UpdateSummaryItem(string user, string owner, string repo)
return await base.ReadMessageItem<int>(url);
}

public async Task<int> ApproveSummaryItemPRs(string user, string owner, string repo, string approver)
public async Task<bool> ApproveSummaryItemPRs(string user, string owner, string repo, string approver)
{
Uri url = new($"api/SummaryItems/ApproveSummaryItemPRs?user=" + user + "&owner=" + owner + "&repo=" + repo + "&approver=" + approver, UriKind.Relative);
return await base.ReadMessageItem<int>(url);
return await base.ReadMessageItem<bool>(url);
}

}
Expand Down

0 comments on commit f7167a2

Please sign in to comment.