* robots.txt added

* deploy updated
* export route changed to include file extension
This commit is contained in:
Danyi Dávid
2017-10-01 11:53:43 +02:00
parent b17a4c71f7
commit 23ad3132c3
3 changed files with 5 additions and 2 deletions

View File

@@ -29,4 +29,4 @@
$app->get('/', App\Action\HomePageAction::class, 'home');
$app->get('/api/galleries', App\Action\ListGalleriesAction::class, 'api.galleries');
$app->get('/image/{slug}/{image}[/{thumb}]', App\Action\GetImageAction::class, 'download.image');
$app->get('/export-album/{slug}', App\Action\ExportAlbumAction::class, 'export.album');
$app->get('/export-album/{slug}.zip', App\Action\ExportAlbumAction::class, 'export.album');