mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 20:48:50 +08:00
14 lines
214 B
JavaScript
14 lines
214 B
JavaScript
const Subscription = {
|
|
commentAdded(comment) {
|
|
return comment;
|
|
},
|
|
commentEdited(comment) {
|
|
return comment;
|
|
},
|
|
commentStatusChanged(data) {
|
|
return data;
|
|
},
|
|
};
|
|
|
|
module.exports = Subscription;
|