ORIENT/modules/system/routes.php

14 lines
238 B
PHP
Raw Normal View History

<?php
/*
* Register System routes before all user routes.
*/
2014-10-18 09:58:50 +00:00
App::before(function ($request) {
/*
* Combine JavaScript and StyleSheet assets
*/
Route::any('combine/{file}', 'System\Classes\Controller@combine');
});