Fix name sanitization to be based on specific tags instead of on input tag filtering

This commit is contained in:
Campbell Alden 2023-07-24 13:56:56 +09:00
parent e6ffc866c4
commit d232763850
8 changed files with 53 additions and 12 deletions

View file

@ -19,6 +19,7 @@ pub enum Status {
pub struct Project {
pub id: String,
pub title: String,
pub tags: Vec<String>,
pub notes: Option<String>,
pub status: Status,
}