forked from Ivasoft/mattermost-mobile
* Add verification for push proxy and related interface * Fix lint and extract i18n * Be specific about undefined equalities. * Fix test * Address feedback * Fix long server names styles * Fix tests and typo
20 lines
675 B
TypeScript
20 lines
675 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const PUSH_PROXY_STATUS_VERIFIED = 'verified';
|
|
export const PUSH_PROXY_STATUS_UNKNOWN = 'unknown';
|
|
export const PUSH_PROXY_STATUS_NOT_AVAILABLE = 'not_available';
|
|
|
|
export const PUSH_PROXY_RESPONSE_VERIFIED = 'true';
|
|
export const PUSH_PROXY_RESPONSE_UNKNOWN = 'unknown';
|
|
export const PUSH_PROXY_RESPONSE_NOT_AVAILABLE = 'false';
|
|
|
|
export default {
|
|
PUSH_PROXY_STATUS_VERIFIED,
|
|
PUSH_PROXY_STATUS_UNKNOWN,
|
|
PUSH_PROXY_STATUS_NOT_AVAILABLE,
|
|
PUSH_PROXY_RESPONSE_VERIFIED,
|
|
PUSH_PROXY_RESPONSE_UNKNOWN,
|
|
PUSH_PROXY_RESPONSE_NOT_AVAILABLE,
|
|
};
|