1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-22 12:16:11 +02:00
Files
php-phpbb/phpBB/config/default/routing/routing.yml
MateBartus a089ff5eb0 [ticket/13654] Moving reporting into controller
Moving report.php's content into different services and controllers to
better comply with the MVC model.

Also implementing:
 * Replacement for reasons_display()
 * Adding assign_meta_refresh_var() to \controller\helper
 * Adding separate routes for easy configuration
 * Updating unit tests to expect to correct results
 * Add BC tests

PHPBB3-13654
2015-04-16 11:29:11 +02:00

17 lines
357 B
YAML

# Structure:
#
# foo_controller:
# path: /foo
# defaults: { _controller: foo_sevice:method }
#
# The above will be accessed via app.php?controller=foo and it will
# instantiate the "foo_service" service and call the "method" method.
#
phpbb_help_routing:
resource: "help.yml"
prefix: /help
phpbb_report_routing:
resource: "report.yml"