Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created January 3, 2018 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NetanelBasal/f7192db6b417ae164d8efc620e8d00bc to your computer and use it in GitHub Desktop.
Save NetanelBasal/f7192db6b417ae164d8efc620e8d00bc to your computer and use it in GitHub Desktop.
export const API = new InjectionToken('API');
const API_URL = `${environment.BASE_URL}/api/v1`;
export const endpoints = {
login: '${API_URL}/auth/login',
signup: '${API_URL}/auth/signup',
createTodo: '${API_URL}/todos/create',
updateTodo: '${API_URL}/todos/:id/update',
deleteTodo: '${API_URL}/todos/:id/delete,
.....
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment