iachat/app/javascript/dashboard/api/captain/lifecycleDeliveries.js
Rodribm10 b69053ae62 feat(lifecycle): API clients for rules/config/deliveries + concierge update
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-15 10:42:51 -03:00

19 lines
384 B
JavaScript

/* global axios */
import ApiClient from '../ApiClient';
class CaptainLifecycleDeliveries extends ApiClient {
constructor() {
super('captain/lifecycle_deliveries', { accountScoped: true });
}
get(params = {}) {
return axios.get(this.url, { params });
}
show(id) {
return axios.get(`${this.url}/${id}`);
}
}
export default new CaptainLifecycleDeliveries();