Skip to content

Commit

Permalink
Fix get projects
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilianruesch committed Nov 19, 2023
1 parent daae882 commit 77b179a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export class JiraCloudProvider implements IProvider {
async getProjects(): Promise<Project[]> {
return new Promise((resolve, reject) => {
this.getRestApiClient(3)
.get('/project/searchs?expand=description,lead,issueTypes,url,projectKeys,permissions,insight')
.get('/project/search?expand=description,lead,issueTypes,url,projectKeys,permissions,insight')
.then(async (response) => {
const projects = response.data.values.map((project: JiraProject) => ({
key: project.key,
Expand Down

0 comments on commit 77b179a

Please sign in to comment.