[IMP] developer: normalize reference in js doc
The preferred format for (frontend) references is now:
"frontend/filename/section", or something close to that.
closes odoo/documentation#1294
X-original-commit: 894165a949
Signed-off-by: Géry Debongnie (ged) <ged@openerp.com>
This commit is contained in:
parent
3af790ba8e
commit
d16c2472f5
@ -56,8 +56,8 @@ debug mode, add `?debug=0` instead.
|
|||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
Additional modes are available for developers: `?debug=assets` enables the
|
Additional modes are available for developers: `?debug=assets` enables the
|
||||||
:ref:`assets mode <javascript/debug_mode/assets>`, and `?debug=tests` enables
|
:ref:`assets mode <frontend/framework/assets_debug_mode>`, and `?debug=tests` enables
|
||||||
the :ref:`tests mode <javascript/debug_mode/tests>`.
|
the :ref:`tests mode <frontend/framework/tests_debug_mode>`.
|
||||||
|
|
||||||
Locate the mode tools
|
Locate the mode tools
|
||||||
=====================
|
=====================
|
||||||
|
@ -90,7 +90,7 @@ simply a component that displays all components registered in the
|
|||||||
``main_components`` registry. This is how other parts of the system can extend
|
``main_components`` registry. This is how other parts of the system can extend
|
||||||
the web client.
|
the web client.
|
||||||
|
|
||||||
.. _javascript/environment:
|
.. _frontend/framework/environment:
|
||||||
|
|
||||||
Environment
|
Environment
|
||||||
===========
|
===========
|
||||||
@ -108,12 +108,12 @@ the shared ``env`` object:
|
|||||||
* - `qweb`
|
* - `qweb`
|
||||||
- required by Owl (contains all templates)
|
- required by Owl (contains all templates)
|
||||||
* - `bus`
|
* - `bus`
|
||||||
- :ref:`main bus <javascript/bus>`, used to coordinate some generic events
|
- :ref:`main bus <frontend/framework/bus>`, used to coordinate some generic events
|
||||||
* - `services`
|
* - `services`
|
||||||
- all deployed :ref:`services <javascript/services>` (should usually be accessed
|
- all deployed :ref:`services <javascript/services>` (should usually be accessed
|
||||||
with the `useService` hook)
|
with the `useService` hook)
|
||||||
* - `debug`
|
* - `debug`
|
||||||
- string. If non empty, the web client is in :ref:`debug mode <javascript/debug_mode>`
|
- string. If non empty, the web client is in :ref:`debug mode <frontend/framework/debug_mode>`
|
||||||
* - `_t`
|
* - `_t`
|
||||||
- translation function
|
- translation function
|
||||||
* - `isSmall`
|
* - `isSmall`
|
||||||
@ -234,7 +234,7 @@ could mean a different thing depending on the situation).
|
|||||||
not to overuse it! Many problems can be solved in a standard way without
|
not to overuse it! Many problems can be solved in a standard way without
|
||||||
modifying the context.
|
modifying the context.
|
||||||
|
|
||||||
.. _javascript/user-context:
|
.. _frontend/framework/user_context:
|
||||||
|
|
||||||
User Context
|
User Context
|
||||||
------------
|
------------
|
||||||
@ -316,7 +316,7 @@ and its context will be extended with the `default_period_id` value. This is a
|
|||||||
very important usecase that lets developers combine actions together by providing
|
very important usecase that lets developers combine actions together by providing
|
||||||
some information to the next action.
|
some information to the next action.
|
||||||
|
|
||||||
.. _javascript/pyjs:
|
.. _frontend/framework/pyjs:
|
||||||
|
|
||||||
Python Interpreter
|
Python Interpreter
|
||||||
==================
|
==================
|
||||||
@ -364,7 +364,7 @@ The ``py`` javascript code exports 5 functions:
|
|||||||
:param Object context: an object that provides an additional evaluation context
|
:param Object context: an object that provides an additional evaluation context
|
||||||
:returns: any the resulting value of the expression, with respect to the context
|
:returns: any the resulting value of the expression, with respect to the context
|
||||||
|
|
||||||
.. _javascript/domains:
|
.. _frontend/framework/domains:
|
||||||
|
|
||||||
Domains
|
Domains
|
||||||
=======
|
=======
|
||||||
@ -492,12 +492,12 @@ The `Domain` class also provides 4 useful static methods to combine domains:
|
|||||||
Returns a domain representing either the intersection or the union of all the
|
Returns a domain representing either the intersection or the union of all the
|
||||||
domains, depending on the value of the operator argument.
|
domains, depending on the value of the operator argument.
|
||||||
|
|
||||||
.. _javascript/bus:
|
.. _frontend/framework/bus:
|
||||||
|
|
||||||
Bus
|
Bus
|
||||||
===
|
===
|
||||||
|
|
||||||
The web client :ref:`environment <javascript/environment>` object contains an event
|
The web client :ref:`environment <frontend/framework/environment>` object contains an event
|
||||||
bus, named `bus`. Its purpose is to allow various parts of the system to properly
|
bus, named `bus`. Its purpose is to allow various parts of the system to properly
|
||||||
coordinate themselves, without coupling them. The `env.bus` is an owl
|
coordinate themselves, without coupling them. The `env.bus` is an owl
|
||||||
`EventBus <https://github.com/odoo/owl/blob/master/doc/reference/event_bus.md>`_,
|
`EventBus <https://github.com/odoo/owl/blob/master/doc/reference/event_bus.md>`_,
|
||||||
@ -568,7 +568,7 @@ It is mostly interesting for testing purposes: all code using the browser object
|
|||||||
can be tested easily by mocking the relevant functions for the duration of the
|
can be tested easily by mocking the relevant functions for the duration of the
|
||||||
test.
|
test.
|
||||||
|
|
||||||
.. _javascript/debug_mode:
|
.. _frontend/framework/debug_mode:
|
||||||
|
|
||||||
Debug mode
|
Debug mode
|
||||||
==========
|
==========
|
||||||
@ -584,7 +584,7 @@ mode is not active. Otherwise, it is active. If the string contains `assets` or
|
|||||||
`tests`, then the corresponding specific sub modes are activated (see below). Both
|
`tests`, then the corresponding specific sub modes are activated (see below). Both
|
||||||
modes can be active at the same time, for example with the string `assets,tests`.
|
modes can be active at the same time, for example with the string `assets,tests`.
|
||||||
|
|
||||||
The `debug` mode current value can be read in the :ref:`environment<javascript/environment>`:
|
The `debug` mode current value can be read in the :ref:`environment<frontend/framework/environment>`:
|
||||||
`env.debug`.
|
`env.debug`.
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
@ -600,7 +600,7 @@ The `debug` mode current value can be read in the :ref:`environment<javascript/e
|
|||||||
- :ref:`Activate the debug mode <developer-mode>`
|
- :ref:`Activate the debug mode <developer-mode>`
|
||||||
|
|
||||||
|
|
||||||
.. _javascript/debug_mode/assets:
|
.. _frontend/framework/assets_debug_mode:
|
||||||
|
|
||||||
Assets mode
|
Assets mode
|
||||||
-----------
|
-----------
|
||||||
@ -609,7 +609,7 @@ The `debug=assets` sub mode is useful to debug javascript code: once activated,
|
|||||||
the :ref:`assets<reference/assets>` bundles are no longer minified, and source-maps
|
the :ref:`assets<reference/assets>` bundles are no longer minified, and source-maps
|
||||||
are generated as well. This makes it useful to debug all kind of javascript code.
|
are generated as well. This makes it useful to debug all kind of javascript code.
|
||||||
|
|
||||||
.. _javascript/debug_mode/tests:
|
.. _frontend/framework/tests_debug_mode:
|
||||||
|
|
||||||
Tests mode
|
Tests mode
|
||||||
----------
|
----------
|
||||||
|
@ -4,9 +4,9 @@ Javascript Modules
|
|||||||
|
|
||||||
Odoo supports three different kinds of javascript files:
|
Odoo supports three different kinds of javascript files:
|
||||||
|
|
||||||
- :ref:`plain javascript files <javascript/plain_javascript>` (no module system),
|
- :ref:`plain javascript files <frontend/modules/plain_js>` (no module system),
|
||||||
- :ref:`native javascript module <javascript/native_js_module>`.
|
- :ref:`native javascript module <frontend/modules/native_js>`.
|
||||||
- :ref:`Odoo modules <javascript/odoo_module>` (using a custom module system),
|
- :ref:`Odoo modules <frontend/modules/odoo_module>` (using a custom module system),
|
||||||
|
|
||||||
As described in the :ref:`assets management page <reference/assets>`,
|
As described in the :ref:`assets management page <reference/assets>`,
|
||||||
all javascript files are bundled together and served to the browser.
|
all javascript files are bundled together and served to the browser.
|
||||||
@ -18,7 +18,7 @@ specific low level purposes. All new javascript files should be created in the
|
|||||||
native javascript module system. The custom module system is only useful for old,
|
native javascript module system. The custom module system is only useful for old,
|
||||||
not yet converted files.
|
not yet converted files.
|
||||||
|
|
||||||
.. _javascript/plain_javascript:
|
.. _frontend/modules/plain_js:
|
||||||
|
|
||||||
Plain Javascript files
|
Plain Javascript files
|
||||||
======================
|
======================
|
||||||
@ -44,7 +44,7 @@ execute them precisely in that order).
|
|||||||
.. note::
|
.. note::
|
||||||
In Odoo, all external libraries are loaded as plain javascript files.
|
In Odoo, all external libraries are loaded as plain javascript files.
|
||||||
|
|
||||||
.. _javascript/native_js_module:
|
.. _frontend/modules/native_js:
|
||||||
|
|
||||||
Native Javascript Modules
|
Native Javascript Modules
|
||||||
=========================
|
=========================
|
||||||
@ -54,7 +54,7 @@ is simpler, and brings the benefits of a better developer experience with a bett
|
|||||||
integration with the IDE.
|
integration with the IDE.
|
||||||
|
|
||||||
There is a very important point to know: Odoo needs to know which files
|
There is a very important point to know: Odoo needs to know which files
|
||||||
should be translated into :ref:`Odoo modules <javascript/odoo_module>` and which
|
should be translated into :ref:`Odoo modules <frontend/modules/odoo_module>` and which
|
||||||
files should not be translated. This is an opt-in system: Odoo will look at the
|
files should not be translated. This is an opt-in system: Odoo will look at the
|
||||||
first line of a JS file and check if it contains the string *@odoo-module*. If so, it will
|
first line of a JS file and check if it contains the string *@odoo-module*. If so, it will
|
||||||
automatically be converted to an Odoo module.
|
automatically be converted to an Odoo module.
|
||||||
@ -132,7 +132,7 @@ But :file:`file_c` need to use the full name:
|
|||||||
Aliased modules
|
Aliased modules
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
Because :ref:`Odoo modules <javascript/odoo_module>` follow a different module naming pattern, a system exists to allow a smooth
|
Because :ref:`Odoo modules <frontend/modules/odoo_module>` follow a different module naming pattern, a system exists to allow a smooth
|
||||||
transition towards the new system. Currently, if a file is converted to a module (and therefore
|
transition towards the new system. Currently, if a file is converted to a module (and therefore
|
||||||
follow the new naming convention), other files not yet converted to ES6-like syntax in the project
|
follow the new naming convention), other files not yet converted to ES6-like syntax in the project
|
||||||
won't be able to require the module. Aliases are here to map old names with new ones by creating a
|
won't be able to require the module. Aliases are here to map old names with new ones by creating a
|
||||||
@ -258,7 +258,7 @@ them if you encounter issues with, or are constrained by the limitations of, nat
|
|||||||
within the same Odoo addon.
|
within the same Odoo addon.
|
||||||
|
|
||||||
|
|
||||||
.. _javascript/odoo_module:
|
.. _frontend/modules/odoo_module:
|
||||||
|
|
||||||
Odoo Module System
|
Odoo Module System
|
||||||
===================
|
===================
|
||||||
|
@ -134,10 +134,10 @@ For most Odoo code, we want to use a module system. Because of the way assets
|
|||||||
work in Odoo (and in particular, the fact that each installed odoo addon can
|
work in Odoo (and in particular, the fact that each installed odoo addon can
|
||||||
modify the list of files contained in a bundle), Odoo has to resolve modules
|
modify the list of files contained in a bundle), Odoo has to resolve modules
|
||||||
browser side. To do that, Odoo provides a small module system described just
|
browser side. To do that, Odoo provides a small module system described just
|
||||||
below (see :ref:`javascript/odoo_module`).
|
below (see :ref:`frontend/modules/odoo_module`).
|
||||||
|
|
||||||
However, Odoo also provides support for native javascript modules (see
|
However, Odoo also provides support for native javascript modules (see
|
||||||
:ref:`javascript/native_js_module`). These modules
|
:ref:`frontend/modules/native_js`). These modules
|
||||||
will simply be translated by the server into odoo modules. It is encouraged to
|
will simply be translated by the server into odoo modules. It is encouraged to
|
||||||
write all javascript code as a native module, for a better IDE integration. In
|
write all javascript code as a native module, for a better IDE integration. In
|
||||||
the future, the Odoo module system should be considered an implementation detail,
|
the future, the Odoo module system should be considered an implementation detail,
|
||||||
|
@ -149,14 +149,14 @@ checkboxes or datepickers. This page explains how to use these generic component
|
|||||||
|
|
||||||
* - Technical Name
|
* - Technical Name
|
||||||
- Short Description
|
- Short Description
|
||||||
* - :ref:`CheckBox <frontend/checkbox>`
|
* - :ref:`CheckBox <frontend/owl/checkbox>`
|
||||||
- a simple checkbox component with a label next to it
|
- a simple checkbox component with a label next to it
|
||||||
* - :ref:`Dropdown <frontend/dropdown>`
|
* - :ref:`Dropdown <frontend/owl/dropdown>`
|
||||||
- full-featured dropdown
|
- full-featured dropdown
|
||||||
* - :ref:`Pager <frontend/pager>`
|
* - :ref:`Pager <frontend/pager>`
|
||||||
- a small component to handle pagination
|
- a small component to handle pagination
|
||||||
|
|
||||||
.. _frontend/checkbox:
|
.. _frontend/owl/checkbox:
|
||||||
|
|
||||||
CheckBox
|
CheckBox
|
||||||
--------
|
--------
|
||||||
@ -195,7 +195,7 @@ Props
|
|||||||
- `boolean`
|
- `boolean`
|
||||||
- if true, the checkbox is disabled, otherwise it is enabled
|
- if true, the checkbox is disabled, otherwise it is enabled
|
||||||
|
|
||||||
.. _frontend/dropdown:
|
.. _frontend/owl/dropdown:
|
||||||
|
|
||||||
Dropdown
|
Dropdown
|
||||||
--------
|
--------
|
||||||
|
@ -104,16 +104,16 @@ Reference List
|
|||||||
|
|
||||||
* - Category
|
* - Category
|
||||||
- Content
|
- Content
|
||||||
* - :ref:`main_components <registries/main_components>`
|
* - :ref:`main_components <frontend/registries/main_components>`
|
||||||
- top level components
|
- top level components
|
||||||
* - :ref:`services <registries/services>`
|
* - :ref:`services <frontend/registries/services>`
|
||||||
- all services that should be activated
|
- all services that should be activated
|
||||||
* - :ref:`systray <registries/systray>`
|
* - :ref:`systray <frontend/registries/systray>`
|
||||||
- components displayed in the systray zone in the navbar
|
- components displayed in the systray zone in the navbar
|
||||||
* - :ref:`user_menuitems <registries/usermenu>`
|
* - :ref:`user_menuitems <frontend/registries/usermenu>`
|
||||||
- menu items displayed in the user menu (top right of navbar)
|
- menu items displayed in the user menu (top right of navbar)
|
||||||
|
|
||||||
.. _registries/main_components:
|
.. _frontend/registries/main_components:
|
||||||
|
|
||||||
Main components registry
|
Main components registry
|
||||||
------------------------
|
------------------------
|
||||||
@ -141,7 +141,7 @@ this:
|
|||||||
Component: LoadingIndicator,
|
Component: LoadingIndicator,
|
||||||
});
|
});
|
||||||
|
|
||||||
.. _registries/services:
|
.. _frontend/registries/services:
|
||||||
|
|
||||||
Service registry
|
Service registry
|
||||||
----------------
|
----------------
|
||||||
@ -163,7 +163,7 @@ framework.
|
|||||||
|
|
||||||
registry.category("services").add("myService", myService);
|
registry.category("services").add("myService", myService);
|
||||||
|
|
||||||
.. _registries/systray:
|
.. _frontend/registries/systray:
|
||||||
|
|
||||||
Systray registry
|
Systray registry
|
||||||
----------------
|
----------------
|
||||||
@ -178,7 +178,7 @@ with the following three keys:
|
|||||||
- `Component`: the component class that represents the item. Its root element
|
- `Component`: the component class that represents the item. Its root element
|
||||||
should be a `<li>` tag, otherwise it might not be styled properly.
|
should be a `<li>` tag, otherwise it might not be styled properly.
|
||||||
- `props (optional)`: props that should be given to the component
|
- `props (optional)`: props that should be given to the component
|
||||||
- `isDisplayed (optional)`: a function that takes the :ref:`env <javascript/environment>`
|
- `isDisplayed (optional)`: a function that takes the :ref:`env <frontend/framework/environment>`
|
||||||
and returns a boolean. If true, the systray item is displayed. Otherwise it is
|
and returns a boolean. If true, the systray item is displayed. Otherwise it is
|
||||||
removed.
|
removed.
|
||||||
|
|
||||||
@ -210,7 +210,7 @@ The sequence number defaults to 50. If given, this number will be used
|
|||||||
to order the items. The lowest sequence is on the right and the highest sequence
|
to order the items. The lowest sequence is on the right and the highest sequence
|
||||||
is on the left in the systray menu.
|
is on the left in the systray menu.
|
||||||
|
|
||||||
.. _registries/usermenu:
|
.. _frontend/registries/usermenu:
|
||||||
|
|
||||||
Usermenu registry
|
Usermenu registry
|
||||||
-----------------
|
-----------------
|
||||||
@ -219,7 +219,7 @@ The user menu registry (category: `user_menuitems`) contains all menu items that
|
|||||||
are shown when opening the user menu (the navbar element with the user name, on
|
are shown when opening the user menu (the navbar element with the user name, on
|
||||||
the top right).
|
the top right).
|
||||||
|
|
||||||
User menu items are defined by a function taking the :ref:`env <javascript/environment>`
|
User menu items are defined by a function taking the :ref:`env <frontend/framework/environment>`
|
||||||
and returning a plain object, containing the following information:
|
and returning a plain object, containing the following information:
|
||||||
|
|
||||||
* `description` : the menu item text,
|
* `description` : the menu item text,
|
||||||
@ -244,5 +244,5 @@ Example:
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
:ref:`Effect registry<javascript/effect_registry>`
|
:ref:`Effect registry<frontend/services/effect_registry>`
|
||||||
--------------------------------------------------
|
---------------------------------------------------------
|
@ -116,20 +116,20 @@ Reference List
|
|||||||
|
|
||||||
* - Technical Name
|
* - Technical Name
|
||||||
- Short Description
|
- Short Description
|
||||||
* - :ref:`cookie <services/cookie>`
|
* - :ref:`cookie <frontend/services/cookie>`
|
||||||
- read or modify cookies
|
- read or modify cookies
|
||||||
* - :ref:`effect <services/effect>`
|
* - :ref:`effect <frontend/services/effect>`
|
||||||
- display graphical effects
|
- display graphical effects
|
||||||
* - :ref:`notification <services/notification>`
|
* - :ref:`notification <frontend/services/notification>`
|
||||||
- display notifications
|
- display notifications
|
||||||
* - :ref:`rpc <services/rpc>`
|
* - :ref:`rpc <frontend/services/rpc>`
|
||||||
- send requests to the server
|
- send requests to the server
|
||||||
* - :ref:`title <services/title>`
|
* - :ref:`title <frontend/services/title>`
|
||||||
- read or modify the window title
|
- read or modify the window title
|
||||||
* - :ref:`user <services/user>`
|
* - :ref:`user <frontend/services/user>`
|
||||||
- provides some information related to the current user
|
- provides some information related to the current user
|
||||||
|
|
||||||
.. _services/cookie:
|
.. _frontend/services/cookie:
|
||||||
|
|
||||||
Cookie service
|
Cookie service
|
||||||
--------------
|
--------------
|
||||||
@ -167,7 +167,7 @@ API
|
|||||||
|
|
||||||
Deletes the cookie `name`.
|
Deletes the cookie `name`.
|
||||||
|
|
||||||
.. _services/effect:
|
.. _frontend/services/effect:
|
||||||
|
|
||||||
Effect service
|
Effect service
|
||||||
--------------
|
--------------
|
||||||
@ -270,7 +270,7 @@ RainbowMan
|
|||||||
How to add an effect
|
How to add an effect
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
.. _javascript/effect_registry:
|
.. _frontend/services/effect_registry:
|
||||||
|
|
||||||
The effects are stored in a registry called `effects`.
|
The effects are stored in a registry called `effects`.
|
||||||
You can add new effects by providing a name and a function.
|
You can add new effects by providing a name and a function.
|
||||||
@ -341,7 +341,7 @@ Here, it is called in webclient.js to make it visible everywhere for the example
|
|||||||
:width: 600
|
:width: 600
|
||||||
:align: center
|
:align: center
|
||||||
|
|
||||||
.. _services/notification:
|
.. _frontend/services/notification:
|
||||||
|
|
||||||
Notification service
|
Notification service
|
||||||
--------------------
|
--------------------
|
||||||
@ -455,7 +455,7 @@ A notification that closes after a second:
|
|||||||
const close = notificationService.add("I will be quickly closed");
|
const close = notificationService.add("I will be quickly closed");
|
||||||
setTimeout(close, 1000);
|
setTimeout(close, 1000);
|
||||||
|
|
||||||
.. _services/rpc:
|
.. _frontend/services/rpc:
|
||||||
|
|
||||||
RPC service
|
RPC service
|
||||||
-----------
|
-----------
|
||||||
@ -548,11 +548,11 @@ When a rpc fails, then:
|
|||||||
|
|
||||||
If it is a network error, then the error description is simply an object
|
If it is a network error, then the error description is simply an object
|
||||||
``{type: 'network'}``.
|
``{type: 'network'}``.
|
||||||
When a network error occurs, a :ref:`notification <services/notification>` is
|
When a network error occurs, a :ref:`notification <frontend/services/notification>` is
|
||||||
displayed and the server is regularly contacted until it responds. The
|
displayed and the server is regularly contacted until it responds. The
|
||||||
notification is closed as soon as the server responds.
|
notification is closed as soon as the server responds.
|
||||||
|
|
||||||
.. _services/title:
|
.. _frontend/services/title:
|
||||||
|
|
||||||
Title Service
|
Title Service
|
||||||
-------------
|
-------------
|
||||||
@ -627,7 +627,7 @@ Its API is:
|
|||||||
will change the title to ``Odoo``.
|
will change the title to ``Odoo``.
|
||||||
|
|
||||||
|
|
||||||
.. _services/user:
|
.. _frontend/services/user:
|
||||||
|
|
||||||
User service
|
User service
|
||||||
------------
|
------------
|
||||||
@ -654,7 +654,7 @@ API
|
|||||||
- Description
|
- Description
|
||||||
* - ``context``
|
* - ``context``
|
||||||
- ``Object``
|
- ``Object``
|
||||||
- The :ref:`user context<javascript/user-context>`
|
- The :ref:`user context<frontend/framework/user_context>`
|
||||||
* - ``db``
|
* - ``db``
|
||||||
- ``Object``
|
- ``Object``
|
||||||
- Info about the database
|
- Info about the database
|
||||||
@ -691,7 +691,7 @@ API
|
|||||||
|
|
||||||
:param object update: the object to update the context with
|
:param object update: the object to update the context with
|
||||||
|
|
||||||
update the :ref:`user context<javascript/user-context>` with the given object.
|
update the :ref:`user context<frontend/framework/user_context>` with the given object.
|
||||||
|
|
||||||
.. code-block:: javascript
|
.. code-block:: javascript
|
||||||
|
|
||||||
@ -701,7 +701,7 @@ API
|
|||||||
|
|
||||||
:param string key: the key of the targeted attribute
|
:param string key: the key of the targeted attribute
|
||||||
|
|
||||||
remove the value with the given key from the :ref:`user context<javascript/user-context>`
|
remove the value with the given key from the :ref:`user context<frontend/framework/user_context>`
|
||||||
|
|
||||||
.. code-block:: js
|
.. code-block:: js
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user