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

feat(config-api): config api configuration endpoint #3648

Merged
merged 8 commits into from
Jan 19, 2023
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