Skip to content

Commit

Permalink
Revert "fix: [CO-7] fix lti launch url on external (#18)"
Browse files Browse the repository at this point in the history
This reverts commit c53ed99.
  • Loading branch information
kyrylo-kh authored Feb 26, 2025
1 parent c53ed99 commit fe2562d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ Please See the `releases tab <https://github.com/openedx/xblock-lti-consumer/rel
Unreleased
~~~~~~~~~~

9.13.1 - 2025-02-26
-------------------
* Fixed taken lti launch url for external LTI configurations.

9.13.0 - 2025-02-25
-------------------
* Added ability to override launch URL on block for external LTI configurations.
Expand Down
2 changes: 1 addition & 1 deletion lti_consumer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .apps import LTIConsumerApp
from .lti_xblock import LtiConsumerXBlock

__version__ = '9.13.1'
__version__ = '9.13.0'
2 changes: 1 addition & 1 deletion lti_consumer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def _get_lti_1p3_consumer(self):
consumer = consumer_class(
iss=get_lti_api_base(),
lti_oidc_url=self.external_config.get('lti_1p3_oidc_url'),
lti_launch_url=block.lti_1p3_launch_url or self.external_config.get('lti_1p3_launch_url'),
lti_launch_url=self.lti_1p3_launch_url or self.external_config.get('lti_1p3_launch_url'),
client_id=self.external_config.get('lti_1p3_client_id'),
# Deployment ID hardcoded to 1 since
# we're not using multi-tenancy.
Expand Down

0 comments on commit fe2562d

Please sign in to comment.