Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Source/OIDServiceConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ @implementation OIDServiceConfiguration
@synthesize issuer = _issuer;
@synthesize registrationEndpoint = _registrationEndpoint;
@synthesize discoveryDocument = _discoveryDocument;
@synthesize endSessionEndpoint = _endSessionEndpoint;

- (instancetype)init
OID_UNAVAILABLE_USE_INITIALIZER(@selector(
Expand Down Expand Up @@ -208,17 +209,19 @@ - (void)encodeWithCoder:(NSCoder *)aCoder {
[aCoder encodeObject:_issuer forKey:kIssuerKey];
[aCoder encodeObject:_registrationEndpoint forKey:kRegistrationEndpointKey];
[aCoder encodeObject:_discoveryDocument forKey:kDiscoveryDocumentKey];
[aCoder encodeObject:_endSessionEndpoint forKey:kEndSessionEndpointKey];
}

#pragma mark - description

- (NSString *)description {
return [NSString stringWithFormat:
@"OIDServiceConfiguration authorizationEndpoint: %@, tokenEndpoint: %@, "
"registrationEndpoint: %@, discoveryDocument: [%@]",
"registrationEndpoint: %@, endSessionEndpoint: %@, discoveryDocument: [%@]",
_authorizationEndpoint,
_tokenEndpoint,
_registrationEndpoint,
_endSessionEndpoint,
_discoveryDocument];
}

Expand Down