nexo/apps/mattermost/app/constants/push_proxy.ts

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