Skip to content

Commit 4557cb1

Browse files
authored
swapping @girder/oauth-client to @resonant/oauth-client (#194)
1 parent 4377118 commit 4557cb1

File tree

4 files changed

+36
-26
lines changed

4 files changed

+36
-26
lines changed

client/package-lock.json

Lines changed: 33 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"lint:typescript": "vue-tsc --noEmit"
1414
},
1515
"dependencies": {
16-
"@girder/oauth-client": "^0.8.0",
1716
"@jamescoyle/vue-icon": "^0.1.2",
1817
"@mdi/font": "^7.4.47",
1918
"@mdi/js": "^7.4.47",
19+
"@resonant/oauth-client": "^1.0.3",
2020
"@sentry/vue": "^6.16.1",
2121
"@types/d3": "^7.4.0",
2222
"axios": "^1.6.0",

client/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { defineComponent, inject, ref, onMounted, computed, watch } from "vue";
3-
import OAuthClient from "@girder/oauth-client";
3+
import OAuthClient from "@resonant/oauth-client";
44
import { useRoute, useRouter } from "vue-router";
55
import useState from "./use/useState";
66
import { getRecordings } from "./api/api";

client/src/plugins/Oauth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import OauthClient from '@girder/oauth-client';
1+
import OauthClient from '@resonant/oauth-client';
22
import { ref } from 'vue';
33

44
const redirectUrl = new URL((import.meta.env.VITE_APP_LOGIN_REDIRECT || location.origin) as string);

0 commit comments

Comments
 (0)