Skip to content

Commit

Permalink
feat: docs and default configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Milton-Ch committed Mar 10, 2022
1 parent 6cfa087 commit fe3334b
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -435,5 +435,6 @@
},
"deviceAuthzRequestExpiresIn": 1800,
"deviceAuthzTokenPollInterval": 5,
"deviceAuthzResponseTypeToProcessAuthz": "code"
"deviceAuthzResponseTypeToProcessAuthz": "code",
"redirectUrisRegexEnabled": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -359,5 +359,6 @@
"deviceAuthzTokenPollInterval": 5,
"deviceAuthzResponseTypeToProcessAuthz": "code",
"staticKid": "%(staticKid)s",
"forceOfflineAccessScopeToEnableRefreshToken" : false
"forceOfflineAccessScopeToEnableRefreshToken" : false,
"redirectUrisRegexEnabled": false
}
3 changes: 3 additions & 0 deletions jans-cli/cli/jca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4388,6 +4388,9 @@ components:
type: integer
description: The expiration notificator interval in seconds.
example: 600
redirectUrisRegexEnabled:
type: boolean
description: Enable/Disable redirect uris validation using regular expression.
authenticationFiltersEnabled:
type: boolean
description: Boolean value specifying whether to enable user authentication filters.
Expand Down
3 changes: 2 additions & 1 deletion jans-cli/docs/cli/cli-jans-authorization-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,8 @@ Getting access token for scope https://jans.io/oauth/jans-auth-server/config/pro
"discoveryCacheLifetimeInMinutes": 60,
"httpLoggingEnabled": false,
"httpLoggingExludePaths": null,
"externalLoggerConfiguration": null
"externalLoggerConfiguration": null,
"redirectUrisRegexEnabled": false
}
```

Expand Down
3 changes: 2 additions & 1 deletion jans-cli/docs/im/im-jans-authorization-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,8 @@ Select 1 to get all the details about Jans authorization server configuration. I
"discoveryCacheLifetimeInMinutes": 60,
"httpLoggingEnabled": false,
"httpLoggingExludePaths": null,
"externalLoggerConfiguration": null
"externalLoggerConfiguration": null,
"redirectUrisRegexEnabled": false
}
```
By selecting the 2nd option, you can modify its properties partially.
Expand Down
3 changes: 3 additions & 0 deletions jans-config-api/docs/jans-config-api-swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4828,6 +4828,9 @@ components:
staticKid:
type: string
description: Specifies static Kid
redirectUrisRegexEnabled:
type: boolean
description: Enable/Disable redirect uris validation using regular expression.

GluuAttribute:
title: GluuAttribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,5 +359,6 @@
"deviceAuthzTokenPollInterval": 5,
"deviceAuthzResponseTypeToProcessAuthz": "code",
"staticKid": "%(staticKid)s",
"forceOfflineAccessScopeToEnableRefreshToken" : false
"forceOfflineAccessScopeToEnableRefreshToken" : false,
"redirectUrisRegexEnabled": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -445,5 +445,6 @@
},
"deviceAuthzRequestExpiresIn": 1800,
"deviceAuthzTokenPollInterval": 5,
"deviceAuthzResponseTypeToProcessAuthz": "code"
"deviceAuthzResponseTypeToProcessAuthz": "code",
"redirectUrisRegexEnabled": false
}

0 comments on commit fe3334b

Please sign in to comment.