Skip to content

Commit

Permalink
Add more undocumented endpoints
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Brain <[email protected]>
  • Loading branch information
ABrain7710 committed Aug 20, 2021
1 parent 2c87473 commit 1d491bd
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions docs/source/rest-api/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1598,6 +1598,35 @@ paths:
tags:
- experimental
/repo-groups/:repo_group_id/abandoned-issues:
get:
description: List of abandoned issues (last updated &gt;= 1 year ago)
operationId: Abandoned Issues (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
issue_id:
description: 'Example: 125071'
type: integer
repo_id:
description: 'Example: 22004'
type: integer
updated_at:
description: 'Example: 2017-10-30T06:52:19.000Z'
type: string
type: array
tags:
- experimental
/repo-groups/:repo_id/abandoned-issues:
get:
description: List of abandoned issues (last updated &gt;= 1 year ago)
operationId: Abandoned Issues (Repo)
Expand Down Expand Up @@ -1633,6 +1662,47 @@ paths:
tags:
- experimental
/repo-groups/:repo_group_id/lines-changed-by-author:
get:
description: 'Count of closed issues. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-evolution/blob/master/metrics/contributors-new.md
operationId: Lines Changed by Author (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
additions:
description: 'Example: 25611'
type: integer
affiliation:
description: 'Example: NULL'
type: string
cmt_author_date:
description: 'Example: 2004-11-24'
type: string
cmt_author_email:
description: 'Example: [email protected]'
type: string
deletions:
description: 'Example: 296'
type: integer
whitespace:
description: 'Example: 5279'
type: integer
type: array
tags:
- experimental
/repo-groups/:repo_id/lines-changed-by-author:
get:
description: 'Count of closed issues. '
externalDocs:
Expand Down

0 comments on commit 1d491bd

Please sign in to comment.