change categories to tags in frontend

This commit is contained in:
Zutatensuppe 2021-05-22 15:48:13 +02:00
parent 92ed17efa5
commit 5be099c61c
16 changed files with 196 additions and 112 deletions

View file

@ -8,7 +8,7 @@ export type EncodedPlayer = Array<any>
export type EncodedPiece = Array<any>
export type EncodedPieceShape = number
export interface Category {
export interface Tag {
id: number
slug: string
title: string
@ -34,7 +34,7 @@ export interface Image {
file: string
url: string
title: string
categories: Array<Category>
tags: Array<Tag>
created: number
}