mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 05:17:19 +08:00
20 lines
322 B
JavaScript
20 lines
322 B
JavaScript
const Subscription = {
|
|
commentAdded(comment) {
|
|
return comment;
|
|
},
|
|
commentEdited(comment) {
|
|
return comment;
|
|
},
|
|
commentAccepted(comment) {
|
|
return comment;
|
|
},
|
|
commentRejected(comment) {
|
|
return comment;
|
|
},
|
|
commentFlagged(comment) {
|
|
return comment;
|
|
},
|
|
};
|
|
|
|
module.exports = Subscription;
|