#79: Change custom CSS and app name

This commit is contained in:
jendib
2016-05-08 15:38:47 +02:00
parent faa66e01b6
commit f5394534f7
9 changed files with 62 additions and 27 deletions
@@ -56,6 +56,8 @@ public class ThemeResource extends BaseResource {
JsonObject themeConfig = getThemeConfig();
JsonObjectBuilder json = Json.createObjectBuilder();
json.add("name", themeConfig.getString("name", "Sismics Docs"));
json.add("color", themeConfig.getString("color", "#263238"));
json.add("css", themeConfig.getString("css", ""));
return Response.ok().entity(json.build()).build();
}