mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 15:14:45 -03:30
Merge ui and ui_next in one dir See: https://github.com/ansible/awx/issues/10676 Update django .po files Update django .po files Run `awx-manage makemessages`.
13 lines
299 B
JavaScript
13 lines
299 B
JavaScript
const LaunchUpdateMixin = (parent) =>
|
|
class extends parent {
|
|
launchUpdate(id, data) {
|
|
return this.http.post(`${this.baseUrl}${id}/update/`, data);
|
|
}
|
|
|
|
readLaunchUpdate(id) {
|
|
return this.http.get(`${this.baseUrl}${id}/update/`);
|
|
}
|
|
};
|
|
|
|
export default LaunchUpdateMixin;
|