summaryrefslogtreecommitdiff
path: root/contrib/playlib/test/resources/hello-world
diff options
context:
space:
mode:
authorJean Helou <jhe@codamens.fr>2019-02-13 23:29:33 +0100
committerTobias Roeser <le.petit.fou@web.de>2019-02-14 17:45:16 +0100
commit316fab29c7a87e89fa253fd09504b8b54b66911e (patch)
tree75236af55f55858320e0ad075485ea99ee9dcfec /contrib/playlib/test/resources/hello-world
parent1afcfcafe0ed45aeae52f41768797bb6ab39a4d0 (diff)
downloadmill-316fab29c7a87e89fa253fd09504b8b54b66911e.tar.gz
mill-316fab29c7a87e89fa253fd09504b8b54b66911e.tar.bz2
mill-316fab29c7a87e89fa253fd09504b8b54b66911e.zip
switch to T.sources for the routesFiles setting
Diffstat (limited to 'contrib/playlib/test/resources/hello-world')
-rw-r--r--contrib/playlib/test/resources/hello-world/core/conf/routes1
-rw-r--r--contrib/playlib/test/resources/hello-world/core/conf/sub.routes2
2 files changed, 3 insertions, 0 deletions
diff --git a/contrib/playlib/test/resources/hello-world/core/conf/routes b/contrib/playlib/test/resources/hello-world/core/conf/routes
index 7d5e5498..f71b0cdd 100644
--- a/contrib/playlib/test/resources/hello-world/core/conf/routes
+++ b/contrib/playlib/test/resources/hello-world/core/conf/routes
@@ -1,2 +1,3 @@
GET / controllers.HomeController.index
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)
+-> /sub sub.Routes \ No newline at end of file
diff --git a/contrib/playlib/test/resources/hello-world/core/conf/sub.routes b/contrib/playlib/test/resources/hello-world/core/conf/sub.routes
new file mode 100644
index 00000000..4597a19b
--- /dev/null
+++ b/contrib/playlib/test/resources/hello-world/core/conf/sub.routes
@@ -0,0 +1,2 @@
+GET / controllers.SubController.index
+GET /assets/*file controllers.Assets.versioned(path="/public/sub", file: Asset)