Files
talk/graph/resolvers/dont_agree_action.js
T
2017-02-21 14:41:33 -05:00

10 lines
170 B
JavaScript

const DontAgreeAction = {
// Stored in the metadata, extract and return.
reason({metadata: {reason}}) {
return reason;
}
};
module.exports = DontAgreeAction;