mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-06 22:48:19 +00:00
16 lines
414 B
JavaScript
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`;
|
|
}
|
|
}
|