Configuration
The Module Manifest
const Route = use('ElentraJS/Routing/Route');
const RouteCollection = use('ElentraJS/Routing/RouteCollection');
module.exports = {
name: 'Sandbox',
version: '1.0',
supportedLocales: ['en-US', 'fr-CA', 'es-ES'],
routes: new RouteCollection('/sandbox', [
new Route('sandbox.index', '/', 'Sandbox.Sandbox.index')
])
};Module Structure
Last updated