mirror of
https://github.com/status-im/consul.git
synced 2025-01-19 10:15:06 +00:00
e8b7c44087
* ui: Upgrade ember-data models to use native classes/decorators * ui: Update remaining ember-data imports * ui: Move ember-data Adapters to use native classes * ui: Upgrade serializers to native classes/decorators * ui: remove meta from roles, they never had it to start with
32 lines
910 B
JavaScript
32 lines
910 B
JavaScript
import Serializer from '@ember-data/serializer/rest';
|
|
|
|
export default class HttpSerializer extends Serializer {
|
|
respondForQuery(respond, query) {
|
|
return respond((headers, body) => body);
|
|
}
|
|
|
|
respondForQueryRecord(respond, query) {
|
|
return respond((headers, body) => body);
|
|
}
|
|
|
|
respondForFindAll(respond, query) {
|
|
return respond((headers, body) => body);
|
|
}
|
|
|
|
respondForCreateRecord(respond, data) {
|
|
// TODO: Creates may need a primaryKey adding (remove from application)
|
|
return respond((headers, body) => body);
|
|
}
|
|
|
|
respondForUpdateRecord(respond, data) {
|
|
// TODO: Updates only need the primaryKey/uid returning (remove from
|
|
// application)
|
|
return respond((headers, body) => body);
|
|
}
|
|
|
|
respondForDeleteRecord(respond, data) {
|
|
// TODO: Deletes only need the primaryKey/uid returning (remove from application)
|
|
return respond((headers, body) => body);
|
|
}
|
|
}
|