mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	This PR adds timestamps to project events and displays them in the "latest events" box in the project details view. It also changes the font weight of events to be only normal. 
		
			
				
	
	
		
			27 lines
		
	
	
		
			590 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			590 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * Generated by Orval
 | |
|  * Do not edit manually.
 | |
|  * See `gen:api` script in package.json
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * An event summary
 | |
|  */
 | |
| export type PersonalDashboardProjectDetailsSchemaLatestEventsItem = {
 | |
|     /** Which user created this event */
 | |
|     createdBy: string;
 | |
|     /** URL used for the user profile image of the event author */
 | |
|     createdByImageUrl: string;
 | |
|     /**
 | |
|      * The ID of the event.
 | |
|      * @minimum 1
 | |
|      */
 | |
|     id: number;
 | |
|     /**
 | |
|      * **[Experimental]** A markdown-formatted summary of the event.
 | |
|      * @nullable
 | |
|      */
 | |
|     summary: string | null;
 | |
|     createdAt: string;
 | |
| };
 |