Skip to content

Latest commit

 

History

History
96 lines (61 loc) · 1.37 KB

File metadata and controls

96 lines (61 loc) · 1.37 KB

destinations

Specify any additional options for your destinations.

The destinations section in xs-app.json extends the destination configuration in the deployment manifest (manifest.yml), for example, with some static properties such as a logout path.

Sample Code:

{
  "destinations": {
    "node-backend": {
      "logoutPath": "/ui5logout",
      "logoutMethod": "GET"
    }
  }
}

The following syntax rules apply:

Application Router: Destination Properties

Property

Type

Mandatory

Description

logoutPath

String

No

The log out end point for your destination. The logoutPath will be called when central log out is triggered or a session is deleted due to a time out. The request to logoutPath contains additional headers, including the JWT token.

logoutMethod

String

No

The logoutMethod property specifies the HTTP method with which the logoutPath will be requested, for example, POST, PUT, GET; the default value is POST