Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Config Path

Default value

Description

$.menu.links =

Code Block
[
  {
    "key": "sidebar.links.board",
    "suffixIfAnonymous": true,
    "display": true,
    "to": { 
      "name": "boards",
    },
    "descriptionKey": "sidebar.links.boardDescription",
    "onlyIfAllFeaturesActive": ["boards"]
  },
  {
    "key": "sidebar.links.searches",
    "onlyIfLogged": true,
    "display": true,
    "to": {
      "name": "savedSearches"
    },
    "descriptionKey": null
  }
]

Link to the user boards

Link to the user stored searches

Each Link object has the following structure :

Property

Type

Mandatory

Default

Description

key

string

true

undefined

I18n key for link label

routingto

object

true

{}

A JSON to object containing a mandatory name property to specify the Vue route to follow. Ex:

{ "to": { "name": "legalsavedSearches" } }

descriptionKey

string

false

undefined

I18n key for shortcut description

suffixIfAnonymous

boolean

false

onlyIfAllFeaturesActive

array

false

[]

onlyIfLogged

boolean

false

...