Skip to content

Commit

Permalink
added support multi kassa
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammadali-Akbarov committed Dec 9, 2024
1 parent ba76e5c commit bba7cf8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions payme/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def post(self, request, *args, **kwargs):
"""
Handle the incoming webhook request.
"""
self.__check_authorize(request)
self.check_authorize(request)

payme_methods = {
"GetStatement": self.get_statement,
Expand All @@ -83,7 +83,7 @@ def post(self, request, *args, **kwargs):
raise exceptions.MethodNotFound("Method not supported yet!")

@staticmethod
def __check_authorize(request):
def check_authorize(request):
"""
Verify the integrity of the request using the merchant key.
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='payme-pkg',
version='3.0.16',
version='3.0.17',
license='MIT',
author="Muhammadali Akbarov",
author_email='[email protected]',
Expand Down

0 comments on commit bba7cf8

Please sign in to comment.