Skip to content

Commit

Permalink
chore(enums): some other changes
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Dec 4, 2024
1 parent 95d9a7a commit 664b36a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions crates/enums/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use async_graphql::Enum;
use schematic::ConfigEnum;
use sea_orm::{DeriveActiveEnum, EnumIter};
use sea_orm::{DeriveActiveEnum, EnumIter, FromJsonQueryResult};
use sea_orm_migration::prelude::*;
use serde::{Deserialize, Serialize};
use strum::Display;
Expand Down Expand Up @@ -438,17 +438,17 @@ pub enum ExerciseSource {

/// The different types of personal bests that can be achieved on a set.
#[derive(
Clone,
Debug,
Deserialize,
Serialize,
FromJsonQueryResult,
Eq,
PartialEq,
Enum,
Copy,
Clone,
Debug,
Default,
PartialEq,
Serialize,
ConfigEnum,
Deserialize,
FromJsonQueryResult,
)]
#[serde(rename_all = "snake_case")]
pub enum WorkoutSetPersonalBest {
Expand Down

0 comments on commit 664b36a

Please sign in to comment.