ROUTES 대소문자 수정
This commit is contained in:
@@ -16,8 +16,8 @@ $routes->get('/logout', 'Login::out');
|
||||
$routes->get('/', 'Home\Home::dashboard');
|
||||
$routes->get('/home', 'Home\Home::dashboard');
|
||||
|
||||
$routes->get('/home/viewStatData', to: 'Home\Home::viewStatData'); // 실적조회
|
||||
$routes->get('/home/getHomeFaxCount', to: 'Home\Home::getHomeFaxCount'); // 팩스조회
|
||||
$routes->get('/home/viewStatData', 'Home\Home::viewStatData'); // 실적조회
|
||||
$routes->get('/home/getHomeFaxCount', 'Home\Home::getHomeFaxCount'); // 팩스조회
|
||||
|
||||
|
||||
|
||||
@@ -111,7 +111,7 @@ $routes->group('', ['namespace' => 'App\Controllers\Results'], static function (
|
||||
|
||||
// 확인매물일별실적
|
||||
$routes->group('m409', static function ($routes) {
|
||||
$routes->match(['get', 'post'], 'm409a/stats', 'M409::stats');
|
||||
$routes->match(['GET', 'POST'], 'm409a/stats', 'M409::stats');
|
||||
|
||||
// API
|
||||
$routes->get('m409a/getResultList', 'M409::getResultList');
|
||||
@@ -120,7 +120,7 @@ $routes->group('', ['namespace' => 'App\Controllers\Results'], static function (
|
||||
|
||||
// 확인매물개인별실적
|
||||
$routes->group('m410', static function ($routes) {
|
||||
$routes->match(['get', 'post'], 'm410a/stats', 'M410::stats');
|
||||
$routes->match(['GET', 'POST'], 'm410a/stats', 'M410::stats');
|
||||
|
||||
// API
|
||||
$routes->get('m410a/getResultList', 'M410::getResultList');
|
||||
@@ -129,7 +129,7 @@ $routes->group('', ['namespace' => 'App\Controllers\Results'], static function (
|
||||
|
||||
// 확인매물매체사실적
|
||||
$routes->group('m411', static function ($routes) {
|
||||
$routes->match(['get', 'post'], 'm411a/stats', 'M411::stats');
|
||||
$routes->match(['GET', 'POST'], 'm411a/stats', 'M411::stats');
|
||||
|
||||
// API
|
||||
$routes->get('m411a/getResultList', 'M411::getResultList');
|
||||
@@ -138,7 +138,7 @@ $routes->group('', ['namespace' => 'App\Controllers\Results'], static function (
|
||||
|
||||
// 확인매물일자별실적
|
||||
$routes->group('m412', static function ($routes) {
|
||||
$routes->match(['get', 'post'], 'm412a/stats', 'M412::stats');
|
||||
$routes->match(['GET', 'POST'], 'm412a/stats', 'M412::stats');
|
||||
|
||||
// API
|
||||
$routes->get('m412a/getResultList', 'M412::getResultList');
|
||||
@@ -148,7 +148,7 @@ $routes->group('', ['namespace' => 'App\Controllers\Results'], static function (
|
||||
|
||||
// 검증소요시간
|
||||
$routes->group('m415', static function ($routes) {
|
||||
$routes->match(['get', 'post'], 'm415a/stats', 'M415::stats');
|
||||
$routes->match(['GET', 'POST'], 'm415a/stats', 'M415::stats');
|
||||
|
||||
// API
|
||||
$routes->get('m415a/getResultList', 'M415::getResultList');
|
||||
@@ -157,7 +157,7 @@ $routes->group('', ['namespace' => 'App\Controllers\Results'], static function (
|
||||
|
||||
// 개인별이동거리
|
||||
$routes->group('m416', static function ($routes) {
|
||||
$routes->match(['get', 'post'], 'm416a/stats', 'M416::stats');
|
||||
$routes->match(['GET', 'POST'], 'm416a/stats', 'M416::stats');
|
||||
|
||||
// API
|
||||
$routes->get('m416a/getResultList', 'M416::getResultList');
|
||||
@@ -166,7 +166,7 @@ $routes->group('', ['namespace' => 'App\Controllers\Results'], static function (
|
||||
|
||||
// 신규매물실적관리
|
||||
$routes->group('m417', static function ($routes) {
|
||||
$routes->match(['get', 'post'], 'm417a/stats', 'M417::stats');
|
||||
$routes->match(['GET', 'POST'], 'm417a/stats', 'M417::stats');
|
||||
|
||||
// API
|
||||
$routes->get('m417a/getResultList', 'M417::getResultList');
|
||||
|
||||
Reference in New Issue
Block a user