Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fiddle links in docs #862

Merged
2 changes: 2 additions & 0 deletions docs/authorization-configuration.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Authorization configuration

>**NOTE:** For learning and testing purposes, use the [Luigi Fiddle](https://fiddle.luigi-project.io) page where you can configure a sample Luigi application.

Luigi provides OpenID Connect and OAuth2 Implicit Grant authorization out of the box. The **use** key defines the active authorization provider and the **disableAutoLogin** key allows you to disable the automatic login flow that is provided by default.

````
Expand Down
2 changes: 2 additions & 0 deletions docs/authorization-events.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Authorization events

>**NOTE:** For learning and testing purposes, use the [Luigi Fiddle](https://fiddle.luigi-project.io) page where you can configure a sample Luigi application.

Luigi provides life cycle events which it can trigger internally or by authorization providers.
Events are part of the **auth** configuration object and have to be functions. They can be executed asynchronously.

Expand Down
2 changes: 2 additions & 0 deletions docs/communication.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Communication

>**NOTE:** For learning and testing purposes, use the [Luigi Fiddle](https://fiddle.luigi-project.io) page where you can configure a sample Luigi application.

## Custom messages

Luigi Core and Luigi Client can exchange custom messages in both directions.
Expand Down
2 changes: 2 additions & 0 deletions docs/general-settings.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# General settings

>**NOTE:** For learning and testing purposes, use the [Luigi Fiddle](https://fiddle.luigi-project.io) page where you can configure a sample Luigi application.

The configuration file contains a section called **Settings** in which you can configure additional Luigi options.

```javascript
Expand Down
4 changes: 3 additions & 1 deletion docs/navigation-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ There are three main elements to Luigi:

Go to the `basicConfiguration.js` file in your `luigi-config` folder. You can configure the navigation by editing this file.

The file consists of a tree-like structure of **navigation nodes**. The first level nodes represent the top navigation, while their children represent the side navigation. The nodes have some basic properties, such as labels, links, views, and (optionally) children. These properties are called **navigation parameters**.
To experiment with navigation options, you can also use the [Luigi Fiddle](https://fiddle.luigi-project.io) page where you can configure a sample Luigi application.

The configuration file consists of a tree-like structure of **navigation nodes**. The first level nodes represent the top navigation, while their children represent the side navigation. The nodes have some basic properties, such as labels, links, views, and (optionally) children. These properties are called **navigation parameters**.

Here is an example of a simple navigation structure:

Expand Down