Skip to content

Commit

Permalink
Fix typon in invitations endpoint methods
Browse files Browse the repository at this point in the history
Signed-off-by: Kipchirchir Sigei <[email protected]>
  • Loading branch information
KipSigei committed Jul 6, 2023
1 parent c5999fa commit ed63e3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onadata/apps/api/viewsets/project_viewset.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ def star(self, request, *args, **kwargs):

@action(
detail=True,
methods=["GET", "POST, PUT, PATCH"],
url_path="invitations",
methods=["GET", "POST", "PUT", "PATCH"],
url_path=r"invitations/(?P<invitation_id>\d+)",
)
def invitations(self, request, *args, **kwargs):
"""List, Create. Update project invitations"""
Expand Down

0 comments on commit ed63e3e

Please sign in to comment.