Merge branch 'develop' into feat/captain-editor-integration

This commit is contained in:
Shivam Mishra
2026-01-12 19:57:00 +05:30
committed by GitHub
43 changed files with 1658 additions and 144 deletions
@@ -0,0 +1,18 @@
/* global axios */
import ApiClient from '../ApiClient';
class CaptainPreferences extends ApiClient {
constructor() {
super('captain/preferences', { accountScoped: true });
}
get() {
return axios.get(this.url);
}
updatePreferences(data) {
return axios.put(this.url, data);
}
}
export default new CaptainPreferences();