Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Send authentication headers for all project requests (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically authored Mar 20, 2022
1 parent aaf5827 commit 441069a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pages/_type/_id.vue
Original file line number Diff line number Diff line change
Expand Up @@ -565,9 +565,18 @@ export default {
`project/${data.params.id}/members`,
data.$auth.headers
),
data.$axios.get(`project/${data.params.id}/dependencies`),
data.$axios.get(`project/${data.params.id}/version`),
data.$axios.get(`project/${data.params.id}/version?featured=true`),
data.$axios.get(
`project/${data.params.id}/dependencies`,
data.$auth.headers
),
data.$axios.get(
`project/${data.params.id}/version`,
data.$auth.headers
),
data.$axios.get(
`project/${data.params.id}/version?featured=true`,
data.$auth.headers
),
])
).map((it) => it.data)
Expand Down

0 comments on commit 441069a

Please sign in to comment.