mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
17 lines
558 B
JavaScript
17 lines
558 B
JavaScript
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var ChannelStore = require('../stores/channel_store.jsx');
|
|
var Constants = require('../utils/constants.jsx');
|
|
|
|
function setupHomePage(props) {
|
|
var last = ChannelStore.getLastVisitedName();
|
|
if (last == null || last.length === 0) {
|
|
window.location = props.TeamURL + '/channels/' + Constants.DEFAULT_CHANNEL;
|
|
} else {
|
|
window.location = props.TeamURL + '/channels/' + last;
|
|
}
|
|
}
|
|
|
|
global.window.setup_home_page = setupHomePage;
|