11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import keymirror from 'keymirror';
|
|
|
|
const UsersViewTypes = keymirror({
|
|
LOGIN_ID_CHANGED: null,
|
|
PASSWORD_CHANGED: null
|
|
});
|
|
|
|
export default UsersViewTypes;
|