mirror of
https://github.com/google/nomulus
synced 2026-09-05 15:46:55 +00:00
Fix paths in a few places
This commit is contained in:
@@ -29,14 +29,14 @@ public final class RegistryTestServer {
|
||||
|
||||
public static final ImmutableMap<String, Path> RUNFILES =
|
||||
new ImmutableMap.Builder<String, Path>()
|
||||
.put("/index.html", Paths.get("third_party/java_src/gtld/java/google/registry/ui/html/index.html"))
|
||||
.put("/error.html", Paths.get("third_party/java_src/gtld/java/google/registry/ui/html/error.html"))
|
||||
.put("/assets/js/*", Paths.get("third_party/java_src/gtld/java/google/registry/ui"))
|
||||
.put("/assets/css/*", Paths.get("third_party/java_src/gtld/java/google/registry/ui/css"))
|
||||
.put("/index.html", Paths.get("java/google/registry/ui/html/index.html"))
|
||||
.put("/error.html", Paths.get("java/google/registry/ui/html/error.html"))
|
||||
.put("/assets/js/*", Paths.get("java/google/registry/ui"))
|
||||
.put("/assets/css/*", Paths.get("java/google/registry/ui/css"))
|
||||
.put("/assets/sources/deps-runfiles.js",
|
||||
Paths.get("third_party/java_src/gtld/java/google/registry/ui/deps-runfiles.js"))
|
||||
Paths.get("java/google/registry/ui/deps-runfiles.js"))
|
||||
.put("/assets/sources/*", Paths.get(""))
|
||||
.put("/assets/*", Paths.get("third_party/java_src/gtld/java/google/registry/ui/assets"))
|
||||
.put("/assets/*", Paths.get("java/google/registry/ui/assets"))
|
||||
.build();
|
||||
|
||||
private static final ImmutableList<Route> ROUTES = ImmutableList.of(
|
||||
|
||||
Reference in New Issue
Block a user