Update axios requests to nativeHttp, add openid connect auth button

This commit is contained in:
advplyr
2023-09-25 17:30:39 -05:00
parent 00bed39733
commit 46f558d6e0
14 changed files with 128 additions and 14 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
<script>
export default {
async asyncData({ params, app, store, redirect }) {
var series = await app.$axios.$get(`/api/series/${params.id}`).catch((error) => {
var series = await app.$nativeHttp.get(`/api/series/${params.id}`).catch((error) => {
console.error('Failed', error)
return false
})