Skip to content

Commit

Permalink
feat(config-api): config api configuration endpoint (#3648)
Browse files Browse the repository at this point in the history
* fix(config-api): plugin result subsequent call

* fix(fido2-client): conflict of log4j config with auth

* feat(config-api): config api configuration endpoint

* feat(config-api): config endpoint and test case

* feat(config-api): config api configuration endpoint

* feat(config-api): config api configuration endpoint
  • Loading branch information
pujavs committed Jan 19, 2023
1 parent 40268ad commit c798c4c
Show file tree
Hide file tree
Showing 20 changed files with 1,467 additions and 1,053 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class AuditLogConf {
private Collection<String> ignoreHttpMethod;

/**
* List of header attributes
* List of header HTTP attributes whose value is to be logged
*/
private List<String> headerAttributes;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,9 @@ private ApiAccessConstants() {
public static final String UMA_DELETE_ACCESS = "https://jans.io/oauth/config/uma-delete";

public static final String PLUGIN_READ_ACCESS = "https://jans.io/oauth/config/plugin.readonly";

public static final String CONFIG_READ_ACCESS = "https://jans.io/oauth/config/properties.readonly";
public static final String CONFIG_WRITE_ACCESS = "https://jans.io/oauth/config/properties.write";


}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ private ApiConstants() {}

public static final String BASE_API_URL = "/";
public static final String CONFIG = "/config";
public static final String API_CONFIG = "/api-config";
public static final String JWKS = "/jwks";
public static final String JANS_AUTH = "/jans-auth-server";
public static final String LOGGING = "/logging";
Expand Down
Loading

0 comments on commit c798c4c

Please sign in to comment.