Files
mattermost-mobile/app/constants/push_proxy.ts
Daniel Espino García 7e80843092 [Gekidou] [MM-41837] Add verification for push proxy and related interface (#6192)
* 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
2022-05-09 11:41:16 +02:00

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,
};