Skip to content

Commit

Permalink
Merge pull request #54 from tronghieuvuong/tvuong/minorDocumentation
Browse files Browse the repository at this point in the history
Fix documentation.
  • Loading branch information
tronghieuvuong authored Dec 15, 2023
2 parents 423bd0e + 3ec7008 commit 10802bc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/application-status/helper/getSprints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ import { castingReleases, castingSprint } from './castingResponse'
import { filterReleasesByDate, filterReleaseByTeam } from './filterRelease'
import { TeamSprints } from '~/interface/interfaces'

/**
* Get all of the sprints in each Zenhub board.
* @param boardId
* @param startCursor
* @param endCursor
* @param releases
* @param team
* @returns
*/
export default async function getSprints (boardId: string, startCursor: string, endCursor: string, releases: any, team: string) {
const data = await getAllSprints(boardId, startCursor, endCursor)
const result: TeamSprints = {
Expand Down

0 comments on commit 10802bc

Please sign in to comment.