diff options
author | metamuffin <metamuffin@disroot.org> | 2024-03-30 09:25:45 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-03-30 09:25:45 +0100 |
commit | 7f9ab0e949666647074f8d195308a69b224024bb (patch) | |
tree | b174a5a11c32968d18506493961a7bfad344565c /common/src | |
parent | 4fefaf44b094aeac30028bc7199992bb5e6d4b3c (diff) | |
download | jellything-7f9ab0e949666647074f8d195308a69b224024bb.tar jellything-7f9ab0e949666647074f8d195308a69b224024bb.tar.bz2 jellything-7f9ab0e949666647074f8d195308a69b224024bb.tar.zst |
new people group: created by
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/lib.rs | 2 |
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:", }) } } |