@@ -1753,70 +1753,70 @@ paths:
17531753 description : User updated
17541754
17551755 # Invite management
1756- /project/{project_id}/invites :
1757- parameters :
1758- - $ref : " #/parameters/project_id"
1759- get :
1760- tags :
1761- - project
1762- summary : Get invitations for project
1763- parameters :
1764- - name : sort
1765- in : query
1766- required : false
1767- type : string
1768- enum : [created, status, role]
1769- description : sorting field
1770- x-example : created
1771- - name : order
1772- in : query
1773- required : false
1774- type : string
1775- enum : [asc, desc]
1776- description : ordering manner
1777- x-example : desc
1778- responses :
1779- 200 :
1780- description : Project invitations
1781- schema :
1782- type : array
1783- items :
1784- $ref : " #/definitions/ProjectInvite"
1785- post :
1786- tags :
1787- - project
1788- summary : Create project invitation
1789- parameters :
1790- - name : Invite
1791- in : body
1792- required : true
1793- schema :
1794- $ref : " #/definitions/ProjectInviteRequest"
1795- responses :
1796- 201 :
1797- description : Invitation created
1798- schema :
1799- $ref : " #/definitions/ProjectInvite"
1800- 400 :
1801- description : Bad request (invalid role, missing user_id/email, or both provided)
1802- 409 :
1803- description : User already a member or invitation already exists
1804-
1805- /project/{project_id}/invites/{invite_id} :
1806- parameters :
1807- - $ref : " #/parameters/project_id"
1808- - $ref : " #/parameters/invite_id"
1809- get :
1810- tags :
1811- - project
1812- summary : Get specific project invitation
1813- responses :
1814- 200 :
1815- description : Project invitation
1816- schema :
1817- $ref : " #/definitions/ProjectInvite"
1818- 404 :
1819- description : Invitation not found
1756+ # /project/{project_id}/invites:
1757+ # parameters:
1758+ # - $ref: "#/parameters/project_id"
1759+ # get:
1760+ # tags:
1761+ # - project
1762+ # summary: Get invitations for project
1763+ # parameters:
1764+ # - name: sort
1765+ # in: query
1766+ # required: false
1767+ # type: string
1768+ # enum: [created, status, role]
1769+ # description: sorting field
1770+ # x-example: created
1771+ # - name: order
1772+ # in: query
1773+ # required: false
1774+ # type: string
1775+ # enum: [asc, desc]
1776+ # description: ordering manner
1777+ # x-example: desc
1778+ # responses:
1779+ # 200:
1780+ # description: Project invitations
1781+ # schema:
1782+ # type: array
1783+ # items:
1784+ # $ref: "#/definitions/ProjectInvite"
1785+ # post:
1786+ # tags:
1787+ # - project
1788+ # summary: Create project invitation
1789+ # parameters:
1790+ # - name: Invite
1791+ # in: body
1792+ # required: true
1793+ # schema:
1794+ # $ref: "#/definitions/ProjectInviteRequest"
1795+ # responses:
1796+ # 201:
1797+ # description: Invitation created
1798+ # schema:
1799+ # $ref: "#/definitions/ProjectInvite"
1800+ # 400:
1801+ # description: Bad request (invalid role, missing user_id/email, or both provided)
1802+ # 409:
1803+ # description: User already a member or invitation already exists
1804+ #
1805+ # /project/{project_id}/invites/{invite_id}:
1806+ # parameters:
1807+ # - $ref: "#/parameters/project_id"
1808+ # - $ref: "#/parameters/invite_id"
1809+ # get:
1810+ # tags:
1811+ # - project
1812+ # summary: Get specific project invitation
1813+ # responses:
1814+ # 200:
1815+ # description: Project invitation
1816+ # schema:
1817+ # $ref: "#/definitions/ProjectInvite"
1818+ # 404:
1819+ # description: Invitation not found
18201820# put:
18211821# tags:
18221822# - project
0 commit comments