Adding NewComments sort.
This commit is contained in:
parent
a564816fe5
commit
4fce7a0859
2 changed files with 2 additions and 0 deletions
|
@ -27,6 +27,7 @@ export interface PostAggregates {
|
|||
score: number;
|
||||
upvotes: number;
|
||||
downvotes: number;
|
||||
newest_comment_time_necro: string;
|
||||
newest_comment_time: string;
|
||||
}
|
||||
|
||||
|
|
|
@ -74,6 +74,7 @@ export enum SortType {
|
|||
TopYear = 'TopYear',
|
||||
TopAll = 'TopAll',
|
||||
MostComments = 'MostComments',
|
||||
NewComments = 'NewComments',
|
||||
}
|
||||
|
||||
export enum ListingType {
|
||||
|
|
Loading…
Reference in a new issue