# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

GET /		Demo.index
GET /doc	Demo.doc
GET /community Demo.community
GET /code	Demo.code
GET /modules Demo.modules
GET /modules/{id} Demo.modules
POST /menuClass Demo.setMenuClass
GET /sql Demo.sql
GET /non-sql Demo.nonSql
GET /mysql Demo.mysql
GET /postgres Demo.postgres
GET /mongodb Demo.mongodb

GET /logout Demo.logout

# Import Menu routes
*       /menu                                       module:menu

# Map static resources from the /app/public folder to the /public path
GET     /public/                                staticDir:public
GET     /css/                                staticDir:public/stylesheets
GET     /js/                                staticDir:public/javascripts
GET     /img/                                staticDir:public/images


# Catch all
*       /{controller}/{action}                  {controller}.{action}
