mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-12 14:17:46 +00:00
docs: fix ENV_PATCHES example
This commit is contained in:
parent
2e276cbb09
commit
f042ca9b90
@ -71,9 +71,11 @@ This imports the ``hooks`` module from Tutor, which grants us access to ``hooks.
|
|||||||
::
|
::
|
||||||
|
|
||||||
hooks.Filters.ENV_PATCHES.add_item(
|
hooks.Filters.ENV_PATCHES.add_item(
|
||||||
|
(
|
||||||
<name>,
|
<name>,
|
||||||
<content>
|
<content>
|
||||||
)
|
)
|
||||||
|
)
|
||||||
|
|
||||||
This means "add ``<content>`` to the ``{{ patch("<name>") }}`` statement, thanks to the :py:data:`tutor.hooks.Filters.ENV_PATCHES` filter". In our case, we want to modify the LMS settings, both in production and development. The right patch for that is :patch:`openedx-lms-common-settings`. We add one item, which is a single Python-formatted line of code::
|
This means "add ``<content>`` to the ``{{ patch("<name>") }}`` statement, thanks to the :py:data:`tutor.hooks.Filters.ENV_PATCHES` filter". In our case, we want to modify the LMS settings, both in production and development. The right patch for that is :patch:`openedx-lms-common-settings`. We add one item, which is a single Python-formatted line of code::
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user