TF-571 Check OIDC is available
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class OIDCRequest with EquatableMixin {
|
||||
|
||||
final String baseUrl;
|
||||
final String resourceUrl = 'https://gateway.upn.integration-open-paas.org';
|
||||
final String relUrl = 'http://openid.net/specs/connect/1.0/issuer';
|
||||
|
||||
OIDCRequest({required this.baseUrl});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [baseUrl, resourceUrl, relUrl];
|
||||
}
|
||||
Reference in New Issue
Block a user