Merge branch 'main' into feature/insert_flag

This commit is contained in:
ろむねこ 2024-06-13 16:46:07 +09:00
commit b51572a70c
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -15,6 +15,7 @@ public class FeatureFlagItemModel {
public FeatureFlagItemModel(String key, boolean defaultValue, boolean isOverrideAllowed) {
this.key = key;
this.value = defaultValue;
this.defaultValue = defaultValue;
this.isOverrideAllowed = isOverrideAllowed;
}