mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-07-02 09:00:23 +00:00
✨ Refactor components and models:
- 🔥 Removed deprecated `placeholder-pattern` component. - 🧹 Simplified and cleaned up Blade views by removing unused comments and sections. - 🗂️ Extracted `SetsCreatedBy` concern for DRY and reused it across models. - 🔧 Consolidated configuration for Horizon `authorized_nostr_keys`. - 🧪 Migrated media conversion to use new Spatie enums for clarity. - ♻️ Replaced repetitive link rendering with dynamic rendering in meetups and services views.
This commit is contained in:
@@ -11,24 +11,15 @@ class SetTimezone
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
|
||||
* @param Closure(Request): (Response) $next
|
||||
*/
|
||||
public function handle(Request $request, Closure $next): Response
|
||||
{
|
||||
if (
|
||||
$request->user()
|
||||
&& $timezone = $request->user()->timezone
|
||||
) {
|
||||
config([
|
||||
'app.timezone' => $timezone,
|
||||
'app.user-timezone' => $timezone,
|
||||
]);
|
||||
$timezone = $request->user()?->timezone ?: 'Europe/Berlin';
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
config([
|
||||
'app.timezone' => 'Europe/Berlin',
|
||||
'app.user-timezone' => 'Europe/Berlin',
|
||||
'app.timezone' => $timezone,
|
||||
'app.user-timezone' => $timezone,
|
||||
]);
|
||||
|
||||
return $next($request);
|
||||
|
||||
Reference in New Issue
Block a user