# This file defines all module routes (Higher priority routes first)
#
# import these routes in the main app as :
# *     /                       module:secure-permissions
#
# ~~~~

GET			/login			Secure.login
POST		/login			Secure.authenticate
GET			/logout			Secure.logout

# for unit tests
#{if play.Play.configuration.getProperty("secure-permissions-tests-running") == "true"}
 GET     ${ctx}/public/                                						staticDir:public
 *       ${ctx}/{controller}/{action}                  						{controller}.{action}
#{/if}
