[2.x] Added Browser Session Feature (#340)

This commit is contained in:
Rasel Islam Rafi
2024-11-05 21:19:55 +06:00
committed by GitHub
parent 0f810f4077
commit 2c49e2712c
7 changed files with 503 additions and 1 deletions

View File

@ -3,6 +3,7 @@
namespace App\Web\Pages\Settings\Profile;
use App\Web\Components\Page;
use App\Web\Pages\Settings\Profile\Widgets\BrowserSession;
use App\Web\Pages\Settings\Profile\Widgets\ProfileInformation;
use App\Web\Pages\Settings\Profile\Widgets\TwoFactor;
use App\Web\Pages\Settings\Profile\Widgets\UpdatePassword;
@ -24,6 +25,7 @@ public function getWidgets(): array
return [
[ProfileInformation::class],
[UpdatePassword::class],
[BrowserSession::class],
[TwoFactor::class],
];
}