remove keycloak change use cookie only

This commit is contained in:
Warunee Tamkoo 2024-08-28 11:14:21 +07:00
parent 24374ab8f2
commit 92b85ce4ef
23 changed files with 236 additions and 189 deletions

View file

@ -9,7 +9,6 @@ import "@vuepic/vue-datepicker/dist/main.css";
import "quasar/src/css/index.sass";
import http from "./plugins/http";
import keycloak, { getToken } from "@/plugins/keycloak";
// import OpenLayersMap from "vue3-openlayers";
@ -41,27 +40,4 @@ app.component(
);
app.config.globalProperties.$http = http;
// authen with keycloak client
const auth = await getToken();
if (auth.token && auth.refresh_token) {
keycloak.init({
checkLoginIframe: false,
token: auth.token,
refreshToken: auth.refresh_token,
});
// .then((authenticated) => {
// console.log("authenticated", authenticated);
// if (!authenticated) {
// window.location.reload();
// } else {
// console.log("Authenticated");
// }
// })
// .catch((err) => {
// console.error("Keycloak initialization failed:", err);
// });
}
app.mount("#app");