mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-24 17:53:36 -05:00
Begin using async/await.
This commit is contained in:
7
src/endpoints.jsx
Normal file
7
src/endpoints.jsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export const API_ROOT = '/api/';
|
||||
export const API_LOGIN = `${API_ROOT}login/`;
|
||||
export const API_LOGOUT = `${API_ROOT}logout/`;
|
||||
export const API_V2 = `${API_ROOT}v2/`;
|
||||
export const API_CONFIG = `${API_V2}config/`;
|
||||
export const API_PROJECTS = `${API_V2}projects/`;
|
||||
export const API_ORGANIZATIONS = `${API_V2}organizations/`;
|
||||
Reference in New Issue
Block a user