This commit is contained in:
Joey Kimsey
2024-12-02 18:53:48 -05:00
parent 3eec88c228
commit b1b0da0c08
20 changed files with 939 additions and 195 deletions

View File

@ -29,6 +29,11 @@ class Home extends Controller {
self::$title = '{SITENAME}';
self::$pageDescription = 'This is the homepage of your new Tempus Project Installation. Thank you for installing. find more info at https://thetempusproject.com';
Views::view( 'index' );
Template::addHeader( 'Access-Control-Allow-Origin: *');
$bugsnag = \Bugsnag\Client::make( BUGSNAG_API_KEY );
\Bugsnag\Handler::register($bugsnag);
$bugsnag->notifyException(new \RuntimeException("Test error"));
}
public function login() {