Move non-invite specific stuff to UserAddress

This commit is contained in:
David Baker 2017-08-15 13:42:23 +01:00
parent bbcf7e1d9b
commit 81273ec855
5 changed files with 6 additions and 43 deletions

View file

@ -19,11 +19,10 @@ import React from 'react';
import PropTypes from 'prop-types';
import { _t } from '../../../languageHandler';
import sdk from '../../../index';
import { getAddressType } from '../../../Invite';
import MatrixClientPeg from '../../../MatrixClientPeg';
import AccessibleButton from '../elements/AccessibleButton';
import Promise from 'bluebird';
import { addressTypes } from '../../../Invite.js';
import { addressTypes, getAddressType } from '../../../UserAddress.js';
const TRUNCATE_QUERY_LIST = 40;
const QUERY_USER_DIRECTORY_DEBOUNCE_MS = 200;

View file

@ -20,7 +20,7 @@ limitations under the License.
import React from 'react';
import sdk from '../../../index';
import classNames from 'classnames';
import { UserAddressType } from '../../../Invite';
import { UserAddressType } from '../../../UserAddress';
export default React.createClass({
displayName: 'AddressSelector',

View file

@ -20,7 +20,7 @@ import classNames from 'classnames';
import sdk from "../../../index";
import MatrixClientPeg from "../../../MatrixClientPeg";
import { _t } from '../../../languageHandler';
import { UserAddressType } from '../../../Invite.js';
import { UserAddressType } from '../../../UserAddress.js';
export default React.createClass({