Publishing the source is what asks for it: a modified version has to carry prominent notices saying it was modified, with a date. These files already added a Coffey Labs copyright line beside upstream's, which implies as much without saying it; now they say it. 38 files, found by diffing against the merge base with upstream rather than by guessing. Upstream's own notices are untouched. The build is unchanged.
25 lines
680 B
TypeScript
25 lines
680 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <[email protected]>
|
|
* SPDX-FileCopyrightText: 2026 Coffey Labs
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*
|
|
* Modified by Coffey Labs in 2026 for INBUXA.
|
|
*/
|
|
|
|
interface EnterpriseUpsellProps {
|
|
open: boolean;
|
|
onClose: () => void;
|
|
}
|
|
|
|
/**
|
|
* INBUXA: nothing to sell. There is one edition, every feature is in it, and
|
|
* the edition is never anything but complete (see accountStore), so this
|
|
* never opens. It stays as an empty component so the places upstream calls
|
|
* it from merge without conflicts.
|
|
*/
|
|
export function EnterpriseUpsell({ open }: EnterpriseUpsellProps) {
|
|
void open;
|
|
return null;
|
|
}
|