Basic add organization functionality.

- Placeholders for Lookup Modal and Ansible Environment dropdown.
This commit is contained in:
kialam
2018-12-10 15:00:16 -05:00
parent e736cfab36
commit 1dd8175e11
2 changed files with 122 additions and 12 deletions

View File

@@ -45,6 +45,7 @@ class APIClient {
}
get = (endpoint, params = {}) => this.http.get(endpoint, { params });
post = (endpoint, data) => this.http.post(endpoint, data);
}
export default new APIClient();