import Controller from "./Controller"; export default class HomeController extends Controller { public Index_Get_AllowAnonymous() { if (this.session) { this.redirectToAction("dashboard", "account"); } return this.view(); } }