PATH needs a trailing slash

This commit is contained in:
lpm0073 2022-11-08 20:03:21 -06:00
parent 47ec84ca07
commit 6eb4f65fe4
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# CHANGE LOG
## Version 1.0.1 (2022-11-08)
## Version 1.0.2 (2022-11-08)
- add property for URL
- add class variables for PATH, AUTHORIZATION_ENDPOINT, TOKEN_ENDPOINT, USERINFO_ENDPOINT

View File

@ -1 +1 @@
__version__ = "1.0.1"
__version__ = "1.0.2"

View File

@ -57,7 +57,7 @@ class WPOpenEdxOAuth2(BaseOAuth2):
BASE_URL = "https://set-me-please.com"
# a path to append to the BASE_URL: https://oauth_host.com/oauth/
PATH = "wp-json/moserver"
PATH = "wp-json/moserver/"
# endpoint defaults
AUTHORIZATION_ENDPOINT = "authorize"

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "edx-oauth2-wordpress-backend"
version = "1.0.1"
version = "1.0.2"
authors = [
{ name="Lawrence McDaniel", email="lpm0073@gmail.com" },
]