ORIENT/modules/system/routes.php

12 lines
243 B
PHP
Raw Normal View History

<?php
2015-01-03 11:41:23 +00:00
/**
* 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\SystemController@combine');
});