1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00

refactor: rename message banners to banners - events (#5100)

https://linear.app/unleash/issue/2-1531/rename-message-banners-to-banners

Follow up to https://github.com/Unleash/unleash/pull/5098
This one adapts the existing events.
This commit is contained in:
Nuno Góis 2023-10-19 13:53:40 +01:00 committed by GitHub
parent 9cef75d71d
commit ba53d392b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 21 deletions

View File

@ -41,9 +41,9 @@ import {
GROUP_UPDATED, GROUP_UPDATED,
IConstraint, IConstraint,
IEvent, IEvent,
MESSAGE_BANNER_CREATED, BANNER_CREATED,
MESSAGE_BANNER_DELETED, BANNER_DELETED,
MESSAGE_BANNER_UPDATED, BANNER_UPDATED,
PROJECT_CREATED, PROJECT_CREATED,
PROJECT_DELETED, PROJECT_DELETED,
SEGMENT_CREATED, SEGMENT_CREATED,
@ -232,16 +232,16 @@ const EVENT_MAP: Record<string, IEventData> = {
action: '*{{user}}* updated group *{{event.preData.name}}*', action: '*{{user}}* updated group *{{event.preData.name}}*',
path: '/admin/groups', path: '/admin/groups',
}, },
[MESSAGE_BANNER_CREATED]: { [BANNER_CREATED]: {
action: '*{{user}}* created message banner *{{event.data.message}}*', action: '*{{user}}* created banner *{{event.data.message}}*',
path: '/admin/message-banners', path: '/admin/message-banners',
}, },
[MESSAGE_BANNER_DELETED]: { [BANNER_DELETED]: {
action: '*{{user}}* deleted message banner *{{event.preData.message}}*', action: '*{{user}}* deleted banner *{{event.preData.message}}*',
path: '/admin/message-banners', path: '/admin/message-banners',
}, },
[MESSAGE_BANNER_UPDATED]: { [BANNER_UPDATED]: {
action: '*{{user}}* updated message banner *{{event.preData.message}}*', action: '*{{user}}* updated banner *{{event.preData.message}}*',
path: '/admin/message-banners', path: '/admin/message-banners',
}, },
[PROJECT_CREATED]: { [PROJECT_CREATED]: {

View File

@ -49,9 +49,9 @@ import {
SERVICE_ACCOUNT_DELETED, SERVICE_ACCOUNT_DELETED,
SERVICE_ACCOUNT_UPDATED, SERVICE_ACCOUNT_UPDATED,
GROUP_DELETED, GROUP_DELETED,
MESSAGE_BANNER_CREATED, BANNER_CREATED,
MESSAGE_BANNER_UPDATED, BANNER_UPDATED,
MESSAGE_BANNER_DELETED, BANNER_DELETED,
} from '../types/events'; } from '../types/events';
import { IAddonDefinition } from '../types/model'; import { IAddonDefinition } from '../types/model';
@ -127,9 +127,9 @@ const slackAppDefinition: IAddonDefinition = {
GROUP_CREATED, GROUP_CREATED,
GROUP_DELETED, GROUP_DELETED,
GROUP_UPDATED, GROUP_UPDATED,
MESSAGE_BANNER_CREATED, BANNER_CREATED,
MESSAGE_BANNER_UPDATED, BANNER_UPDATED,
MESSAGE_BANNER_DELETED, BANNER_DELETED,
PROJECT_CREATED, PROJECT_CREATED,
PROJECT_DELETED, PROJECT_DELETED,
SEGMENT_CREATED, SEGMENT_CREATED,

View File

@ -146,9 +146,9 @@ export const SERVICE_ACCOUNT_DELETED = 'service-account-deleted' as const;
export const FEATURE_POTENTIALLY_STALE_ON = export const FEATURE_POTENTIALLY_STALE_ON =
'feature-potentially-stale-on' as const; 'feature-potentially-stale-on' as const;
export const MESSAGE_BANNER_CREATED = 'message-banner-created' as const; export const BANNER_CREATED = 'banner-created' as const;
export const MESSAGE_BANNER_UPDATED = 'message-banner-updated' as const; export const BANNER_UPDATED = 'banner-updated' as const;
export const MESSAGE_BANNER_DELETED = 'message-banner-deleted' as const; export const BANNER_DELETED = 'banner-deleted' as const;
export const IEventTypes = [ export const IEventTypes = [
APPLICATION_CREATED, APPLICATION_CREATED,
@ -263,9 +263,9 @@ export const IEventTypes = [
FEATURE_DEPENDENCY_ADDED, FEATURE_DEPENDENCY_ADDED,
FEATURE_DEPENDENCY_REMOVED, FEATURE_DEPENDENCY_REMOVED,
FEATURE_DEPENDENCIES_REMOVED, FEATURE_DEPENDENCIES_REMOVED,
MESSAGE_BANNER_CREATED, BANNER_CREATED,
MESSAGE_BANNER_UPDATED, BANNER_UPDATED,
MESSAGE_BANNER_DELETED, BANNER_DELETED,
] as const; ] as const;
export type IEventType = typeof IEventTypes[number]; export type IEventType = typeof IEventTypes[number];