Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions web/client/plugins/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ const HomeConnected = connect((state) => ({
* It can be rendered in {@link #plugins.OmniBar|OmniBar}.
* Supports as containers at lower priority {@link #plugins.Toolbar|Toolbar}.
* You can configure the home target path globally by setting `miscSettings.homePath` in `localConfig.json`. By default it redirects to `"#/"`;
*
* If you want to show this plugin with BurgerMenu (so without Sidebar), apply the following configuration:
*
* ```javascript
* {
* "cfg": {},
* "override": {
* "OmniBar": {
* "priority": 5
* }
* }
* }
* ```
*
* @name Home
* @class
* @memberof plugins
Expand Down
14 changes: 14 additions & 0 deletions web/client/plugins/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,20 @@ import { isAdminUserSelector } from '../selectors/security';
* }
* ```
* By default, if not set, it will use classic `{"type": "basic", "provider": "geostore"}` setup for GeoStore.
*
* If you want to show this plugin with BurgerMenu (so without Sidebar), apply the following configuration:
*
* ```javascript
* {
* "cfg": {},
* "override": {
* "OmniBar": {
* "priority": 5
* }
* }
* }
* ```
*
* @class Login
* @memberof plugins
* @static
Expand Down