mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-03-31 17:15:38 +00:00
require app key on crontab/tool http requests
This commit is contained in:
parent
f5d8759dfe
commit
07262f4486
4 changed files with 12 additions and 4 deletions
|
|
@ -322,7 +322,7 @@ class TorrentController extends AbstractController
|
|||
}
|
||||
|
||||
return $this->render('default/torrent/list.html.twig', [
|
||||
'query' => urldecode($request->get('query')),
|
||||
'query' => $request->get('query') ? urldecode($request->get('query')) : '',
|
||||
'torrents' => $torrents,
|
||||
'pagination' =>
|
||||
[
|
||||
|
|
@ -1752,7 +1752,10 @@ class TorrentController extends AbstractController
|
|||
|
||||
// Tools
|
||||
#[Route(
|
||||
'/crontab/torrent/scrape',
|
||||
'/crontab/torrent/scrape/{key}',
|
||||
requirements: [
|
||||
'key' => '%app.key%'
|
||||
],
|
||||
methods:
|
||||
[
|
||||
'GET'
|
||||
|
|
@ -1773,7 +1776,10 @@ class TorrentController extends AbstractController
|
|||
}
|
||||
|
||||
#[Route(
|
||||
'/tool/torrent/reindex',
|
||||
'/tool/torrent/reindex/{key}',
|
||||
requirements: [
|
||||
'key' => '%app.key%'
|
||||
],
|
||||
methods:
|
||||
[
|
||||
'GET'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue