mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 01:10:05 +08:00
7f9c71a802
* 'master' of github.com:coralproject/talk: fix handle confirmed email better standardized styles, fixed mutation bug password patches fixed merge error Fix build fail Missed an s docs patch Add feature overview to GDPR docs InputField conflict moving mutations to /hocs folder moving mutations to /hocs folder withUpdateEmailAddress in the plugins hoc
16 lines
427 B
JavaScript
16 lines
427 B
JavaScript
import ChangePassword from './containers/ChangePassword';
|
|
import AddEmailAddressDialog from './containers/AddEmailAddressDialog';
|
|
import Profile from './containers/Profile';
|
|
import translations from './translations.yml';
|
|
import graphql from './graphql';
|
|
|
|
export default {
|
|
translations,
|
|
slots: {
|
|
profileHeader: [Profile],
|
|
profileSettings: [ChangePassword],
|
|
stream: [AddEmailAddressDialog],
|
|
},
|
|
...graphql,
|
|
};
|