Skip to content

Commit

Permalink
Fix fullname being required for playlist creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Xwilarg committed Dec 31, 2024
1 parent 126b1f7 commit 1d83634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/Models/Request/PlaylistForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class PlaylistForm
{
[Required]
public string Name { set; get; }
public string FullName { set; get; }
public string? FullName { set; get; } = null;
public string? Description { set; get; } = string.Empty;
public string? ImageUrl { set; get; } = null;
}

0 comments on commit 1d83634

Please sign in to comment.