10e0c1d537
* setup * add catch for when no payload * clean up * pr comments * wip * finish findAll fixes * clean up * remove console log
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
import Application from '../application';
|
|
|
|
export default Application.extend({
|
|
findAll() {
|
|
return this.ajax(this.buildURL() + '/version-history', 'GET', {
|
|
data: {
|
|
list: true,
|
|
},
|
|
}).then((resp) => {
|
|
return resp;
|
|
});
|
|
},
|
|
});
|