mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
Change integration API paths
This commit is contained in:
parent
7e07c7d5ce
commit
7b6fd6a93d
1 changed files with 2 additions and 2 deletions
|
@ -44,10 +44,10 @@ export const UPDATE_CHAT_MESSGAE_VIZ = `${NEXT_PUBLIC_API_HOST}api/admin/chat/up
|
||||||
export const ACCESS_TOKENS = `${API_LOCATION}accesstokens`;
|
export const ACCESS_TOKENS = `${API_LOCATION}accesstokens`;
|
||||||
|
|
||||||
// Delete a single access token
|
// Delete a single access token
|
||||||
export const DELETE_ACCESS_TOKEN = `${API_LOCATION}deleteaccesstoken`;
|
export const DELETE_ACCESS_TOKEN = `${API_LOCATION}accesstokens/delete`;
|
||||||
|
|
||||||
// Create a new access token
|
// Create a new access token
|
||||||
export const CREATE_ACCESS_TOKEN = `${API_LOCATION}createaccesstoken`;
|
export const CREATE_ACCESS_TOKEN = `${API_LOCATION}accesstokens/create`;
|
||||||
|
|
||||||
// Get webhooks
|
// Get webhooks
|
||||||
export const WEBHOOKS = `${API_LOCATION}webhooks`;
|
export const WEBHOOKS = `${API_LOCATION}webhooks`;
|
||||||
|
|
Loading…
Reference in a new issue