mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 17:45:56 +08:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
const DontAgreeAction = {
|
|
|
|
// Stored in the metadata, extract and return.
|
|
reason({metadata: {reason}}) {
|
|
return reason;
|
|
}
|
|
};
|
|
|
|
module.exports = DontAgreeAction;
|