Add admin/themes/{theme}/embed module

- This module allows editing the site settings for a theme with a different user theme
This commit is contained in:
Hypolite Petovan 2019-04-25 22:20:20 -04:00
parent d6a5274bb9
commit a5da0fd98f
3 changed files with 98 additions and 0 deletions

View file

@ -133,6 +133,7 @@ class Router
$collector->addRoute(['GET'] , '/queue[/deferred]' , Module\Admin\Queue::class);
$collector->addRoute(['GET', 'POST'], '/themes' , Module\Admin\Themes\Index::class);
$collector->addRoute(['GET', 'POST'], '/themes/{theme}/embed' , Module\Admin\Themes\Embed::class);
$collector->addRoute(['GET', 'POST'], '/tos' , Module\Admin\Tos::class);