Skip to content

Commit

Permalink
Merge branch 'origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerexbcd committed Jan 14, 2025
2 parents 5f33679 + dfc9ec1 commit c63dc43
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions inventree_kofi/kofi_Plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ def receive(self, request):
# Plugin URLs
def setup_urls(self):
"""URLs for app."""

setattr(self.receive, 'auth_exempt', True)

return [
path(r"kofi", self.receive, name="kofiWebhook"),
]
path(f"kofi/", self.receive, name="kofiWebhook"),
]

2 changes: 1 addition & 1 deletion inventree_kofi/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information for the plugin"""

PLUGIN_VERSION = "0.0.4"
PLUGIN_VERSION = "0.0.5"

0 comments on commit c63dc43

Please sign in to comment.