updated headers for nica order request Added reactor type support to nica checklists. Refactored flow logic to just use NICA_CHECKLISTS table. added feature flag support gated Feature Flags menu item to supervisors removed debug added auto comment for intr maint flows on reactor log, intr maint flow id to react servs form, and cancel order on unsign reactor log added exceptions for lamp and tc services, added control to edit flow id on react servs form, added auto-reactor log comment, added cancel order on unsign event removed debug modified NicaOrdersServices to use env variables for group resource name added logic to filter out service flow ids for servics with is_intrusive set to false, modified security group for feature flag menu, added ability to clear intr main flow id to react serv form removed unused equates
18 lines
607 B
Plaintext
18 lines
607 B
Plaintext
compile insert FEATURE_FLAGS_EQUATES
|
|
/*----------------------------------------
|
|
Author : Table Create Insert Routine
|
|
Written : 07/03/2025
|
|
Description : Insert for Table FEATURE_FLAGS
|
|
----------------------------------------*/
|
|
#ifndef __FEATURE_FLAGS_EQUATES__
|
|
#define __FEATURE_FLAGS_EQUATES__
|
|
|
|
equ FEATURE_FLAGS.FEATURE_DESCRIPTION$ to 1
|
|
equ FEATURE_FLAGS.ENABLED$ to 2
|
|
equ FEATURE_FLAGS.MODIFY_USER$ to 3
|
|
equ FEATURE_FLAGS.MODIFY_DTM$ to 4
|
|
equ FEATURE_FLAGS.MODIFY_STATE$ to 5
|
|
equ FEATURE_FLAGS.MODIFY_COMMENT$ to 6
|
|
|
|
#endif
|