mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
18 lines
453 B
JavaScript
18 lines
453 B
JavaScript
/*************************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* All Rights Reserved
|
|
*************************************************/
|
|
|
|
export default ['Rest', 'GetBasePath', function(Rest, GetBasePath){
|
|
return {
|
|
deleteJobTemplate: function(id){
|
|
var url = GetBasePath('job_templates');
|
|
|
|
url = url + id;
|
|
|
|
Rest.setUrl(url);
|
|
return Rest.destroy();
|
|
}
|
|
}
|
|
}] |