Skip to content

Commit

Permalink
Try to finish first version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerexbcd committed Jan 13, 2025
1 parent 0e253d9 commit 337b307
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions inventree_kofi/kofi_Plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class KofiPlugin(UrlsMixin, SettingsMixin, InvenTreePlugin):

# plugin metadata for identity in InvenTree
NAME = "KofiPlugin"
SLUG = "kofi"
SLUG = "kofi_plugin"
TITLE = ("InvenTree Kofi Integration")
DESCRIPTION = ("Integrates Your Ko-fi shop with InvenTree")
VERSION = PLUGIN_VERSION
Expand Down Expand Up @@ -142,5 +142,5 @@ def receive(self, request):
def setup_urls(self):
"""URLs for app."""
return [
path(r"kofi", self.receive, name="kofi webhook"),
path(r"^kofi/", self.receive, name="kofi_webhook"),
]
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.1.dev.1"
PLUGIN_VERSION = "0.0.1"

0 comments on commit 337b307

Please sign in to comment.