[Glitch] Implement adding a user to a list from their profile

Port bb5558de62 to glitch-soc
This commit is contained in:
Thibaut Girka
2018-11-06 17:44:28 +01:00
committed by ThibG
parent 34209c0340
commit bf92e7aaa6
12 changed files with 349 additions and 0 deletions

View File

@ -120,6 +120,12 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
dispatch(unblockDomain(domain));
},
onAddToList(account){
dispatch(openModal('LIST_ADDER', {
accountId: account.get('id'),
}));
},
});
export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Header));