Skip to content

Commit e4503a0

Browse files
committed
Review
1 parent aae9b67 commit e4503a0

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

docs/DataProviders.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,11 @@ const dataProvider = {
231231
})));
232232
}
233233
// fallback to the default implementation
234-
return httpClient(`${apiUrl}/${resource}/${params.id}`, {
234+
const { data } = await httpClient(`${apiUrl}/${resource}/${params.id}`, {
235235
method: 'DELETE',
236236
});
237+
238+
return { data };
237239
},
238240
// ...
239241
}

packages/ra-core/src/dataProvider/withLifecycleCallbacks.spec.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ describe('withLifecycleCallbacks', () => {
187187
const dataProvider = withLifecycleCallbacks(base, [
188188
{
189189
resource: 'posts',
190-
afterGetMany: jest.fn(() =>
190+
afterGetMany: jest.fn(result =>
191191
Promise.resolve({
192-
data: [{ id: 1, title: 'bar' }],
192+
data: [{ ...result.data[0], title: 'bar' }],
193193
})
194194
),
195195
},
@@ -248,9 +248,9 @@ describe('withLifecycleCallbacks', () => {
248248
const dataProvider = withLifecycleCallbacks(base, [
249249
{
250250
resource: 'posts',
251-
afterGetManyReference: jest.fn(() =>
251+
afterGetManyReference: jest.fn(result =>
252252
Promise.resolve({
253-
data: [{ id: 1, title: 'bar' }],
253+
data: [{ ...result.data[0], title: 'bar' }],
254254
total: 1,
255255
})
256256
),

0 commit comments

Comments
 (0)