feat: add channel videos sort by oldest

This commit is contained in:
ThetaDev 2023-08-16 01:37:20 +02:00
parent 6cf59a167a
commit d8e3841fb6
2 changed files with 35 additions and 0 deletions

View file

@ -29,6 +29,8 @@ pub enum ChannelOrder {
Latest = 1,
/// Order videos with the highest number of views first
Popular = 2,
/// Order videos with the earliest upload date first
Oldest = 4,
}
impl ChannelVideoTab {