server: Add a is_readonly attribute to the schema

This commit is contained in:
Valentin Tolmer
2024-08-27 22:51:34 +02:00
committed by nitnelave
parent 3ec44a58be
commit b1384818d2
10 changed files with 38 additions and 1 deletions

View File

@@ -147,6 +147,7 @@ pub struct AttributeSchema {
pub is_visible: bool,
pub is_editable: bool,
pub is_hardcoded: bool,
pub is_readonly: bool,
}
#[derive(PartialEq, Eq, Debug, Serialize, Deserialize, Clone)]