winter/modules/system/routes.php

12 lines
243 B
PHP
Raw Normal View History

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