mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* feat: added endpoint for retrieving plans * feat: added routes for retrieving and generating payment link * chore: self-hosted upgrade. * chore: self-hosted one upgrade. * chore: product and payment link generation * chore: count workspace members * chore: activation modal. * chore: self managed instance workspace upgrade modal. * chore: billable members. * chore: remove changelogs redirection from workspace pages header. * chore: update seat count logic * fix: exit process if monitor fails to decrypt feature flags * chore: added docker compose rule to restart the monitor container for only 5 attempts --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
export const shouldRenderSettingLink = (settingKey: string) => {
|
|
switch (settingKey) {
|
|
default:
|
|
return true;
|
|
}
|
|
};
|