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 Dec 17, 2021
1 parent 9b5c2ce commit ed55cc5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 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,4 @@
import {Oidc} from "./oidc-client.js";
import {Oidc} from "./oidc-client.esm.js";

let client = null;

Expand Down
File renamed without changes.

0 comments on commit ed55cc5

Please sign in to comment.