Skip to content
Snippets Groups Projects
Select Git revision
  • 7ecbeb118c6b8ec2b9ba4834b4eb06a51a169794
  • main default protected
  • 1-fix-assignment-errors
  • testsfail
4 results

gradlew

Blame
  • routes 701 B
    # Routes
    # This file defines all application routes (Higher priority routes first)
    # https://www.playframework.com/documentation/latest/ScalaRouting
    # ~~~~
    
    # An example controller showing a sample home page
    GET     /                           controllers.HomeController.index
    
    GET     /example/json               controllers.ExamplesController.returnJson()
    POST    /example/json               controllers.ExamplesController.receiveJsonPost()
    
    GET     /example/game               controllers.ExamplesController.game(id:Option[String])
    
    # Map static resources from the /public folder to the /assets URL path
    GET     /assets/*file               controllers.Assets.versioned(path="/public", file: Asset)