Adding back Access History and Active Devices

Этот коммит содержится в:
Reed Garmsen
2015-07-01 18:40:20 -07:00
коммит произвёл Asaad Mahmood
родитель eb7c08ab00
Коммит b3b0133930
10 изменённых файлов: 350 добавлений и 168 удалений

Просмотреть файл

@@ -32,6 +32,8 @@ var ErrorBar = require('../components/error_bar.jsx')
var ChannelLoader = require('../components/channel_loader.jsx');
var MentionList = require('../components/mention_list.jsx');
var ChannelInfoModal = require('../components/channel_info_modal.jsx');
var AccessHistoryModal = require('../components/access_history_modal.jsx');
var ActivityLogModal = require('../components/activity_log_modal.jsx');
var Constants = require('../utils/constants.jsx');
@@ -205,4 +207,14 @@ global.window.setup_channel_page = function(team_name, team_type, team_id, chann
document.getElementById('edit_mention_tab')
);
React.render(
<AccessHistoryModal />,
document.getElementById('access_history_modal')
);
React.render(
<ActivityLogModal />,
document.getElementById('activity_log_modal')
);
};