Skip to content

Commit

Permalink
[IMP] auth_jwt_demo: eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
yankinmax committed Mar 1, 2024
1 parent 4b805cc commit 22129e6
Show file tree
Hide file tree
Showing 4 changed files with 24,212 additions and 24,414 deletions.
8 changes: 7 additions & 1 deletion auth_jwt_demo/tests/spa/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ <h2>SPA OIDC Authentication Sample</h2>
<button id="btn-whoami">Who am I? (api call)</button>
<button id="btn-whoami-public-or-jwt">Who am I (public or auth)? (api call)</button>
<script type="module">
import {onload, login, logout, whoami, whoami_public_or_jwt} from "./js/app.js";
import {
onload,
login,
logout,
whoami,
whoami_public_or_jwt,
} from "./js/app.esm.js";

window.onload = onload;
document.getElementById("btn-login").onclick = login;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {Oidc} from "./oidc-client.js";
/* eslint-disable */
import {Oidc} from "./oidc-client.esm.js";

let client = null;

Expand Down
Loading

0 comments on commit 22129e6

Please sign in to comment.