mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
ca01a79f71
## About the changes
Ref:
https://docs.getunleash.io/reference/deploy/configuring-unleash#further-customization
> **eventHook** (`function(event, data)`) - (_deprecated in Unleash 4.3_
in favor of the [Webhook addon](../addons/webhook.md)) If provided, this
function will be invoked whenever a feature is mutated. The possible
values for `event` are `'feature-created'`, `'feature-archived'` and
`'feature-revived'`. The `data` argument contains information about the
mutation. Its fields are `type` (string) - the event type (same as
`event`); `createdBy` (string) - the user who performed the mutation;
`data` - the contents of the change. The contents in `data` differs
based on the event type; For `'feature-archived'` and
`'feature-revived'`, the only field will be `name` - the name of the
feature. For `'feature-created'` the data follows a schema defined in
the code
[here](7b7f0b84e8/src/lib/schema/feature-schema.ts (L77)
).
See an [api here](/reference/api/legacy/unleash/admin/events).
Related to: https://github.com/Unleash/unleash/issues/1265
16 lines
420 B
TypeScript
16 lines
420 B
TypeScript
export * from './logger';
|
|
export * from './metrics';
|
|
export * from './metric-events';
|
|
export * from './default-custom-auth-deny-all';
|
|
export * from './addons';
|
|
export * from './db';
|
|
export * from './middleware';
|
|
export * from './openapi';
|
|
export * from './proxy';
|
|
export * from './routes';
|
|
export * from './services';
|
|
export * from './types';
|
|
export * from './util';
|
|
export * from './error';
|
|
export * from './features';
|