From b28037637625e9a0a8dba6d489462be1432d184c Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Fri, 23 Jan 2026 01:30:58 +0100 Subject: [PATCH] remove: unused method NostrAuth::pleb() (0 usages in codebase) --- app/Support/NostrAuth.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/Support/NostrAuth.php b/app/Support/NostrAuth.php index 3b469c3..a2ba9b0 100644 --- a/app/Support/NostrAuth.php +++ b/app/Support/NostrAuth.php @@ -50,12 +50,4 @@ class NostrAuth { return self::user()?->getPubkey(); } - - /** - * Get the current pleb (convenience method) - */ - public static function pleb(): ?object - { - return self::user()?->getPleb(); - } }