Skip to content

Commit a0ed16d

Browse files
committed
Add test get method for tilda
1 parent 8a477f5 commit a0ed16d

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

partner_programs/views.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ def post(self, request, *args, **kwargs):
9696
except PartnerProgram.DoesNotExist:
9797
return Response(status=status.HTTP_404_NOT_FOUND)
9898

99+
def get(self, request, *args, **kwargs):
100+
return Response(status=status.HTTP_200_OK)
101+
99102

100103
class PartnerProgramRegister(generics.GenericAPIView):
101104
"""

0 commit comments

Comments
 (0)