Skip to content

Commit

Permalink
Merge pull request #158 from DonOmalVindula/master
Browse files Browse the repository at this point in the history
Remove IS References
  • Loading branch information
thivi authored Oct 12, 2021
2 parents ffa1122 + 7533509 commit ed158d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ assignees: ''
<!-- A clear and concise description of what you expected to happen. -->

**Environment information** (_Please complete the following information; remove any unnecessary fields_) **:**
- Product Version: [e.g., IS 5.10.0, IS 5.9.0]
- OS: [e.g., Windows, Linux, Mac]
- Browser: [e.g., Chrome, Firefox]
- SDK Version: [e.g., 0.1.0, 0.1.1]
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,11 @@ requestAccessToken(authorizationCode: string, sessionState: string): Promise<Tok

1. authorizationCode: `string`

This is the authorization code obtained from the identity server after a user signs in.
This is the authorization code obtained from Asgardeo after a user signs in.

2. sessionState: `string`

This is the session state obtained from the identity server after a user signs in.
This is the session state obtained from Asgardeo after a user signs in.

#### Returns

Expand Down Expand Up @@ -422,7 +422,7 @@ The user should be redirected to this URL in order to sign out of the server.

#### Description

This clears the authentication data from the store, generates the sign-out URL and returns it. This should be used only if you want to sign out the user from the identity server as well. If you only want to revoke the access token, then use the [`revokeAccessToken`](#revokeAccessToken) method.
This clears the authentication data from the store, generates the sign-out URL and returns it. This should be used only if you want to sign out the user from the Asgardeo as well. If you only want to revoke the access token, then use the [`revokeAccessToken`](#revokeAccessToken) method.

#### Example

Expand Down Expand Up @@ -645,7 +645,7 @@ A Promise that resolves with the token information or the response returned by t

#### Description

This method can be used to send custom-grant requests to the identity server.
This method can be used to send custom-grant requests to Asgardeo.

#### Example

Expand Down
2 changes: 1 addition & 1 deletion lib/src/core/authentication-core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export class AuthenticationCore<T> {
"authentication-core",
"refreshAccessToken",
"No refresh token found.",
"There was no refresh token found. The identity server doesn't return a " +
"There was no refresh token found. Asgardeo doesn't return a " +
"refresh token if the refresh token grant is not enabled."
)
);
Expand Down

0 comments on commit ed158d3

Please sign in to comment.