mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 22:41:27 +00:00
Update SiteController
This commit is contained in:
parent
799a4cba12
commit
b74e14c4e5
1 changed files with 6 additions and 10 deletions
|
@ -62,20 +62,16 @@ class SiteController extends Controller
|
||||||
|
|
||||||
public function about()
|
public function about()
|
||||||
{
|
{
|
||||||
return Cache::remember('site:about', now()->addHours(12), function() {
|
$page = Page::whereSlug('/site/about')->whereActive(true)->first();
|
||||||
app()->setLocale('en');
|
$stats = Cache::remember('site:about:stats-v1', now()->addHours(12), function() {
|
||||||
$page = Page::whereSlug('/site/about')->whereActive(true)->first();
|
return [
|
||||||
$stats = [
|
'posts' => Status::count(),
|
||||||
'posts' => Status::whereLocal(true)->count(),
|
|
||||||
'users' => User::whereNull('status')->count(),
|
'users' => User::whereNull('status')->count(),
|
||||||
'admin' => User::whereIsAdmin(true)->first()
|
'admin' => User::whereIsAdmin(true)->first()
|
||||||
];
|
];
|
||||||
if($page) {
|
|
||||||
return View::make('site.about-custom')->with(compact('page', 'stats'))->render();
|
|
||||||
} else {
|
|
||||||
return View::make('site.about')->with(compact('stats'))->render();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
$path = $page ? 'site.about-custom' : 'site.about';
|
||||||
|
return view($path, compact('page', 'stats'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function language()
|
public function language()
|
||||||
|
|
Loading…
Reference in a new issue