mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-21 16:52:00 -07:00
feat(NSFW): Adding hook for handling NSFW flags from users
This commit is contained in:
@@ -45,12 +45,23 @@ class P2WDBRESTControllerLib {
|
||||
const counterOffer = ctx.request.body
|
||||
|
||||
await _this.useCases.offer.acceptCounterOffer(counterOffer)
|
||||
|
||||
//
|
||||
} else if (dataType.includes('offer')) {
|
||||
// Detect and handle new Offers
|
||||
console.log('offer data detected')
|
||||
|
||||
const offerObj = ctx.request.body
|
||||
await _this.useCases.offer.createOffer(offerObj)
|
||||
|
||||
//
|
||||
} else if (dataType.includes('flag')) {
|
||||
// Detect and handle data generated by users flagging NSFW Offers.
|
||||
const flagData = ctx.request.body
|
||||
console.log('Flag type data received: ', flagData)
|
||||
|
||||
// const p2wdbHash = flagData.p2wdbHash
|
||||
await _this.useCases.offer.flagOffer(flagData)
|
||||
} else {
|
||||
console.log('Could not route P2WDB webhook data.')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user