feat: move title and description to revision entity

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-06-11 12:48:30 +02:00
parent 20197d36df
commit 90df9a4e32
8 changed files with 73 additions and 29 deletions

View file

@ -17,4 +17,7 @@ export interface RevisionMetadata {
length: number
authorUsernames: string[]
anonymousAuthorCount: number
title: string
tags: string[]
description: string
}