История коммитов

.
refactor(downloads): include search query in page title and description
.
refactor(downloads): extract SearchController with GET-based search URL
- New route GET /downloads/search handled by SearchController
- SearchFilesUseCase sanitizes query and delegates to repository
- DownloadFileRepository::searchFiles() with LIKE escaping
- Search form uses GET method so query is preserved in the URL
- 301 redirect from legacy ?act=search to /downloads/search/
- All Eloquent queries updated to use ::query() for IDE autocompletion
.
refactor(downloads): extract TopFilesController with slug-based routes
.
refactor(downloads): scaffold src/ and extract NewFilesController
.
chore: update AGENTS.md
.
refactor(forum): extract forum access check into middleware
Move EnsureForumAccessUseCase from ~39 controllers into ForumAccessMiddleware
applied at the route group level, eliminating repetitive try-catch boilerplate.
UploadFileController is excluded from the group to preserve JSON error responses.
.
feat(router): add named routes using module.action format
.
deprecate(router): deprecate config/routes.local.php with trigger_error
.
chore(docs): bump docs submodule pointer
.
feat(router): auto-discover module routes from modules/*/config/routes.php
Each module now owns its config/routes.php. RouteCollectorFactory globs
module route files and loads routes.local.php itself (moved out of
config/routes.php). Updated routes.local.php.example to return a callable.