keycloak-uncached
Changes
examples/themes/README.md 2(+1 -1)
Details
diff --git a/examples/providers/authenticator/README.md b/examples/providers/authenticator/README.md
index 833e5c9..725785a 100755
--- a/examples/providers/authenticator/README.md
+++ b/examples/providers/authenticator/README.md
@@ -14,7 +14,7 @@ Then registering the provider by editing keycloak-server.json and adding the mod
],
-You then have to copy the secret-question.ftl and secret-question-config.ftl files to the standalone/configuration/themes/base/login directory.
+You then have to copy the secret-question.ftl and secret-question-config.ftl files to the themes/base/login directory.
After you do all this, you then have to reboot keycloak. When reboot is complete, you will need to log into
the admin console to create a new flow with your new authenticator.
@@ -29,4 +29,4 @@ Your new required action should now be displayed and enabled in the required act
I'm hoping the UI is intuitive enough so that you
can figure out for yourself how to create a flow and add the Authenticator and Required Action. We're looking to add a screencast
-to show this in action.
\ No newline at end of file
+to show this in action.
examples/themes/README.md 2(+1 -1)
diff --git a/examples/themes/README.md b/examples/themes/README.md
index ba47b3c..ea160bc 100644
--- a/examples/themes/README.md
+++ b/examples/themes/README.md
@@ -8,7 +8,7 @@ You can either deploy the themes by copying to the themes folder or as modules.
### Copy
-Simplest way to deploy the themes is to copy `src/main/resources/theme/*` to `standalone/configuration/themes/`.
+Simplest way to deploy the themes is to copy `src/main/resources/theme/*` to `themes/`.
### Module
diff --git a/server-spi/src/main/java/org/keycloak/models/utils/ModelToRepresentation.java b/server-spi/src/main/java/org/keycloak/models/utils/ModelToRepresentation.java
index bc8b0b6..64079b0 100755
--- a/server-spi/src/main/java/org/keycloak/models/utils/ModelToRepresentation.java
+++ b/server-spi/src/main/java/org/keycloak/models/utils/ModelToRepresentation.java
@@ -181,6 +181,7 @@ public class ModelToRepresentation {
rep.setClientId(event.getClientId());
rep.setUserId(event.getUserId());
rep.setSessionId(event.getSessionId());
+ rep.setIpAddress(event.getIpAddress());
rep.setError(event.getError());
rep.setDetails(event.getDetails());
return rep;