-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Problem
Currently the API server doesn't have anything at root. It would be nice if the root could link to the other pages of the API.
Suggested Aproach
You should create a new class that extends AbstractHandler in demo package, this class should handle request to root and return the index page, an index page can be a static .html file (which should be placed in resources folder).
Then modify DemoServer to redirect call to root ("\") to the class you created (similarly as it has been done for the other handlers).