* Prompt/require user to upgrade to new version * Update en.json * Update app message text * Fix typo and add copyright
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {ViewTypes} from 'app/constants';
|
|
|
|
export function setLastUpgradeCheck() {
|
|
return {
|
|
type: ViewTypes.SET_LAST_UPGRADE_CHECK
|
|
};
|
|
}
|