/sub-projects/jquery-stream-play/trunk/conf/routes
#! | 18 lines | 14 code | 4 blank | 0 comment | 0 complexity | 6c1887af256659806a07832acf1500ab MD5 | raw file
1# Routes 2# This file defines all application routes (Higher priority routes first) 3# ~~~~ 4 5# Home page 6GET / Application.index 7GET /chat Application.open 8WS /chat Application.WebSocket.open 9POST /chat Application.handle 10 11# Ignore favicon requests 12GET /favicon.ico 404 13 14# Map static resources from the /app/public folder to the /public path 15GET /public/ staticDir:public 16 17# Catch all 18* /{controller}/{action} {controller}.{action}