Files
twenty/packages/twenty-docs/l/it/developers/backend-development/feature-flags.mdx
T
8cadd00d34 i18n - translations (#15799)
Created by Github action

---------

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: github-actions <github-actions@twenty.com>
2025-11-13 16:34:00 +01:00

52 lines
1.2 KiB
Plaintext

---
title: Feature Flags
image: /images/user-guide/table-views/table.png
---
<Frame>
<img src="/images/user-guide/table-views/table.png" alt="Header" />
</Frame>
I flag delle funzionalità vengono utilizzati per nascondere funzionalità sperimentali. Per Twenty, sono impostati a livello di workspace e non a livello utente.
## Adding a new feature flag
In `FeatureFlagKey.ts` aggiungi il flag di funzionalità:
```ts
type FeatureFlagKey =
| 'IS_FEATURENAME_ENABLED'
| ...;
```
Aggiungilo anche all'enum in `feature-flag.entity.ts`:
```ts
enum FeatureFlagKeys {
IsFeatureNameEnabled = 'IS_FEATURENAME_ENABLED',
...
}
```
Per applicare un flag di funzionalità su una funzione **backend** usa:
```ts
@Gate({
featureFlag: 'IS_FEATURENAME_ENABLED',
})
```
Per applicare un flag di funzionalità su una funzione **frontend** usa:
```ts
const isFeatureNameEnabled = useIsFeatureEnabled('IS_FEATURENAME_ENABLED');
```
## Configura i flag delle funzionalità per il deployment
Cambia il record corrispondente nella Tabella `core.featureFlag`:
| id | chiave | workspaceId | valore |
| ------- | ------------------------ | ----------- | ------ |
| Casuale | `IS_FEATURENAME_ENABLED` | IDWorkspace | `vero` |