mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor(core): Forbid raw enums (no-changelog)
This commit is contained in:
@@ -3,14 +3,14 @@ export interface IHourlyRateDto {
|
||||
currency: string;
|
||||
}
|
||||
|
||||
enum MembershipStatusEnum {
|
||||
const enum MembershipStatusEnum {
|
||||
PENDING = 'PENDING',
|
||||
ACTIVE = 'ACTIVE',
|
||||
DECLINED = 'DECLINED',
|
||||
INACTIVE = 'INACTIVE',
|
||||
}
|
||||
|
||||
enum TaskStatusEnum {
|
||||
const enum TaskStatusEnum {
|
||||
ACTIVE = 'ACTIVE',
|
||||
DONE = 'DONE',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user