Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Removing Beta API URL for Skills API #11

Merged
merged 3 commits into from
Sep 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const getM2MUbahnToken = async () => {
*/
async function getV5SkillResource (path, params) {
const token = await getM2MUbahnToken()
const res = await axios.get(`${config.TC_BETA_API_URL}/${path}`, {
const res = await axios.get(`${config.UBAHN_API_URL}/${path}`, {
params,
headers: { Authorization: `Bearer ${token}` }
})
Expand Down