mirror of
https://github.com/wassname/talk.git
synced 2026-08-07 11:29:44 +08:00
17 lines
273 B
JavaScript
17 lines
273 B
JavaScript
const Subscription = {
|
|
commentAdded(comment) {
|
|
return comment;
|
|
},
|
|
commentEdited(comment) {
|
|
return comment;
|
|
},
|
|
commentStatusChanged(comment) {
|
|
return comment;
|
|
},
|
|
commentFlagged(comment) {
|
|
return comment;
|
|
},
|
|
};
|
|
|
|
module.exports = Subscription;
|