aboutsummaryrefslogtreecommitdiff
path: root/common/src
diff options
context:
space:
mode:
Diffstat (limited to 'common/src')
-rw-r--r--common/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs
index cf33032..951f3f8 100644
--- a/common/src/lib.rs
+++ b/common/src/lib.rs
@@ -110,6 +110,7 @@ pub enum PeopleGroup {
#[cfg_attr(feature = "rocket", field(value = "production"))] Production,
#[cfg_attr(feature = "rocket", field(value = "vfx"))] Vfx,
#[cfg_attr(feature = "rocket", field(value = "costume"))] CostumeMakeup,
+ #[cfg_attr(feature = "rocket", field(value = "createdby"))] CreatedBy,
}
#[derive(Debug, Clone, Deserialize, Serialize, Default, Encode, Decode)]
@@ -330,6 +331,7 @@ impl Display for PeopleGroup {
PeopleGroup::Production => "Production",
PeopleGroup::Vfx => "Visual Effects",
PeopleGroup::CostumeMakeup => "Costume & Makeup",
+ PeopleGroup::CreatedBy => "Created by:",
})
}
}