aboutsummaryrefslogtreecommitdiff
path: root/Psso/AuthInterface/UserExtra.php
diff options
context:
space:
mode:
authorwinter Sparkles2026-08-09 15:44:18 +0100
committerwinter Sparkles2026-08-09 15:44:18 +0100
commit96387025da63025894f6259f7eebed0fc6fc53ac (patch)
treea83d73eeb7ec419b24ff78291634503d4ebceec1 /Psso/AuthInterface/UserExtra.php
parentc8998ccdff070d7c73a634e031a041260b87c3b1 (diff)
implement the rest of login process incl. cookie redirects and 'next'
Diffstat (limited to 'Psso/AuthInterface/UserExtra.php')
-rw-r--r--Psso/AuthInterface/UserExtra.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/Psso/AuthInterface/UserExtra.php b/Psso/AuthInterface/UserExtra.php
new file mode 100644
index 0000000..3a3de93
--- /dev/null
+++ b/Psso/AuthInterface/UserExtra.php
@@ -0,0 +1,7 @@
+<?php
+namespace Psso\AuthInterface;
+
+interface UserExtra {
+ public function userDisplayName(string $username): ?string;
+ public function userEmailAddress(string $username): ?string;
+}