Send authentication headers for all project requests (#431)

This commit is contained in:
Geometrically
2022-03-20 15:29:17 -07:00
committed by GitHub
parent aaf58272f1
commit 441069aa76

View File

@@ -565,9 +565,18 @@ export default {
`project/${data.params.id}/members`, `project/${data.params.id}/members`,
data.$auth.headers data.$auth.headers
), ),
data.$axios.get(`project/${data.params.id}/dependencies`), data.$axios.get(
data.$axios.get(`project/${data.params.id}/version`), `project/${data.params.id}/dependencies`,
data.$axios.get(`project/${data.params.id}/version?featured=true`), 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) ).map((it) => it.data)