first commit
This commit is contained in:
42
apps/backend/config/routing.yml
Normal file
42
apps/backend/config/routing.yml
Normal file
@@ -0,0 +1,42 @@
|
||||
###
|
||||
# Backend default rules
|
||||
###
|
||||
check_service:
|
||||
url: /check_service
|
||||
param: { module: stBackend, action: checkService }
|
||||
|
||||
homepage:
|
||||
url: /
|
||||
param: {module: stDashboard, action: index}
|
||||
|
||||
Open:
|
||||
url: /backend/Open
|
||||
param: {module: stBackendMain, action: Open}
|
||||
|
||||
default_index:
|
||||
url: /:module
|
||||
param: {action: index}
|
||||
requirements:
|
||||
module: "[a-zA-Z0-9_]+"
|
||||
|
||||
stDashboard:
|
||||
url: /dashboard/:action
|
||||
param: {module: stDashboard, action: index}
|
||||
|
||||
stDashboardGadget:
|
||||
url: /dashboard_gadget/:action
|
||||
param: {module: stDashboardGadget, action: index}
|
||||
|
||||
stSoteshopNewsGadget:
|
||||
url: /soteshop_news_gadget/:action
|
||||
param: {module: stSoteshopNewsGadget, action: index}
|
||||
|
||||
stBackend:
|
||||
url: /backend/:action
|
||||
param: {module: stBackend, action: index}
|
||||
|
||||
default:
|
||||
url: /:module/:action/*
|
||||
requirements:
|
||||
module: "[a-zA-Z0-9_]+"
|
||||
action: "[a-zA-Z0-9_]+"
|
||||
Reference in New Issue
Block a user