about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/account/containers/follow_request_note_container.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/features/account/containers/follow_request_note_container.js')
-rw-r--r--app/javascript/mastodon/features/account/containers/follow_request_note_container.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/account/containers/follow_request_note_container.js b/app/javascript/mastodon/features/account/containers/follow_request_note_container.js
new file mode 100644
index 000000000..c33c3de59
--- /dev/null
+++ b/app/javascript/mastodon/features/account/containers/follow_request_note_container.js
@@ -0,0 +1,15 @@
+import { connect } from 'react-redux';
+import FollowRequestNote from '../components/follow_request_note';
+import { authorizeFollowRequest, rejectFollowRequest } from 'mastodon/actions/accounts';
+
+const mapDispatchToProps = (dispatch, { account }) => ({
+  onAuthorize () {
+    dispatch(authorizeFollowRequest(account.get('id')));
+  },
+
+  onReject () {
+    dispatch(rejectFollowRequest(account.get('id')));
+  },
+});
+
+export default connect(null, mapDispatchToProps)(FollowRequestNote);