Skip to content

Commit

Permalink
Merge pull request #731 from baywet/patch-1
Browse files Browse the repository at this point in the history
fixed broken link to documentation basics in error message
  • Loading branch information
sameerag authored May 28, 2019
2 parents 1a046d9 + e507c95 commit bf2606b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ <h3>code</h3>
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
<a name="clientconfigurationerrormessage.invalidcallbackobject.desc-9" class="tsd-anchor"></a>
<h3>desc</h3>
<div class="tsd-signature tsd-kind-icon">desc<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> =&nbsp;&quot;The object passed for the callback was invalid. &quot; +&quot;More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/-basics.&quot;</span></div>
<div class="tsd-signature tsd-kind-icon">desc<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> =&nbsp;&quot;The object passed for the callback was invalid. &quot; +&quot;More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/MSAL-basics.&quot;</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-core/src/error/ClientConfigurationError.ts#L27">error/ClientConfigurationError.ts:27</a></li>
Expand Down Expand Up @@ -448,7 +448,7 @@ <h3>code</h3>
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
<a name="clientconfigurationerrormessage.noredirectcallbacksset.desc-11" class="tsd-anchor"></a>
<h3>desc</h3>
<div class="tsd-signature tsd-kind-icon">desc<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> =&nbsp;&quot;No redirect callbacks have been set. Please call setRedirectCallbacks() with the appropriate function arguments before continuing. &quot; +&quot;More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/-basics.&quot;</span></div>
<div class="tsd-signature tsd-kind-icon">desc<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> =&nbsp;&quot;No redirect callbacks have been set. Please call setRedirectCallbacks() with the appropriate function arguments before continuing. &quot; +&quot;More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/MSAL-basics.&quot;</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-core/src/error/ClientConfigurationError.ts#L22">error/ClientConfigurationError.ts:22</a></li>
Expand Down Expand Up @@ -669,4 +669,4 @@ <h2>Legend</h2>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions lib/msal-core/src/error/ClientConfigurationError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ export const ClientConfigurationErrorMessage = {
noRedirectCallbacksSet: {
code: "no_redirect_callbacks",
desc: "No redirect callbacks have been set. Please call setRedirectCallbacks() with the appropriate function arguments before continuing. " +
"More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/-basics."
"More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/MSAL-basics."
},
invalidCallbackObject: {
code: "invalid_callback_object",
desc: "The object passed for the callback was invalid. " +
"More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/-basics."
"More information is available here: https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/MSAL-basics."
},
scopesRequired: {
code: "scopes_required",
Expand Down

0 comments on commit bf2606b

Please sign in to comment.