Handle web finger to get token in HomeController

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-07-02 15:54:29 +07:00
committed by Dat H. Pham
parent fc2265b5e5
commit 9a2f0aa356
26 changed files with 323 additions and 113 deletions
+7
View File
@@ -9,6 +9,13 @@ class OIDCRequest with EquatableMixin {
OIDCRequest({required this.baseUrl, required this.resourceUrl});
factory OIDCRequest.fromUri(Uri uri) {
return OIDCRequest(
baseUrl: uri.toString(),
resourceUrl: uri.origin,
);
}
@override
List<Object?> get props => [baseUrl, resourceUrl, relUrl];
}