(ctx, next)
| 1909 | } |
| 1910 | |
| 1911 | function deleteHandler(ctx, next) { |
| 1912 | const change = createChangeObject(ctx, 'delete'); |
| 1913 | if (change) { |
| 1914 | changes.write(change); |
| 1915 | } |
| 1916 | |
| 1917 | next(); |
| 1918 | } |
| 1919 | |
| 1920 | function createChangeObject(ctx, type) { |
| 1921 | const where = ctx.where; |
nothing calls this directly
no test coverage detected
searching dependent graphs…