mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 20:41:01 +08:00
32 lines
511 B
JavaScript
32 lines
511 B
JavaScript
const Subscription = {
|
|
commentAdded(comment) {
|
|
return comment;
|
|
},
|
|
commentEdited(comment) {
|
|
return comment;
|
|
},
|
|
commentAccepted(comment) {
|
|
return comment;
|
|
},
|
|
commentRejected(comment) {
|
|
return comment;
|
|
},
|
|
commentReset(comment) {
|
|
return comment;
|
|
},
|
|
commentFlagged(comment) {
|
|
return comment;
|
|
},
|
|
userBanned(user) {
|
|
return user;
|
|
},
|
|
userSuspended(user) {
|
|
return user;
|
|
},
|
|
usernameRejected(user) {
|
|
return user;
|
|
},
|
|
};
|
|
|
|
module.exports = Subscription;
|