Refactoring.
Removed unnecessary methods.
This commit is contained in:
@@ -41,22 +41,4 @@ final class ProjectsController extends Controller
|
||||
|
||||
return \view('site.projects.about', $result->getData());
|
||||
}
|
||||
|
||||
public function about(string $project, Request $request, ?string $language = null)
|
||||
{
|
||||
$result = $this->projectService->getAbout($project, $language, $request->user());
|
||||
if ($result->isError()) {
|
||||
$this->errors($result);
|
||||
}
|
||||
if ($result->isTranslation()) {
|
||||
return $this->viewPageWithoutTranslation($result);
|
||||
}
|
||||
|
||||
if ($result->getProject()->http_href !== null) {
|
||||
$link = ProjectSection::Home->url($result->getProject(), $result->getLanguage());
|
||||
return \redirect($result->getProject()->http_href . $link, 302);
|
||||
}
|
||||
|
||||
return \view('site.projects.about', $result->getData());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user