Files
Fleetbase-Mirror-Repo/console/app/adapters/brand.js
2023-10-10 20:43:18 +08:00

16 lines
414 B
JavaScript

import ApplicationAdapter from './application';
export default class BrandAdapter extends ApplicationAdapter {
urlForFindRecord() {
return `${this.host}/${this.namespace}/settings/branding`;
}
urlForUpdateRecord() {
return `${this.host}/${this.namespace}/settings/branding`;
}
urlForCreateRecord() {
return `${this.host}/${this.namespace}/settings/branding`;
}
}