lux icon indicating copy to clipboard operation
lux copied to clipboard

Find a way to route root to a controller action.

Open CzechsMix opened this issue 7 years ago • 0 comments

This is a requirement to implement #331 and return a welcome page at "mynewluxapi.com/"

export default function routes() {
  //Idea
  this.root.get('controllerName', 'actionName');

  //route to the index function of the ApplicationController
  this.root.get('application', 'index')
}

CzechsMix avatar May 03 '17 23:05 CzechsMix