mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 04:11:13 -05:00
feat: Display user activity history
This commit is contained in:
@@ -331,15 +331,28 @@ export interface SubmissionActivity {
|
||||
submission_type?: string;
|
||||
entity_type?: string;
|
||||
action?: string;
|
||||
content?: {
|
||||
name?: string;
|
||||
slug?: string;
|
||||
description?: string;
|
||||
entity_id?: string;
|
||||
entity_slug?: string;
|
||||
park_slug?: string;
|
||||
park_name?: string;
|
||||
action?: string;
|
||||
};
|
||||
photo_count?: number;
|
||||
photo_preview?: string;
|
||||
}
|
||||
|
||||
export interface RankingActivity {
|
||||
id: string;
|
||||
type: 'ranking';
|
||||
created_at: string;
|
||||
parks?: { slug?: string; name?: string } | null;
|
||||
name?: string;
|
||||
position?: number;
|
||||
title?: string;
|
||||
description?: string;
|
||||
list_type?: string;
|
||||
is_public?: boolean;
|
||||
}
|
||||
|
||||
export interface GenericActivity {
|
||||
|
||||
Reference in New Issue
Block a user