Add "pni" capability in staging

This commit is contained in:
Fedor Indutny 2022-12-20 12:29:17 -08:00 committed by GitHub
parent d8ea9856ec
commit 57eed10a38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 0 deletions

8
ts/util/isPnpEnabled.ts Normal file
View file

@ -0,0 +1,8 @@
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isStaging } from './version';
export function isPnpEnabled(version = window.getVersion()): boolean {
return isStaging(version);
}