mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add mentions to comments
This commit is contained in:
@@ -4,7 +4,8 @@ export interface ActivityIdentifierObject {
|
||||
}
|
||||
|
||||
export interface ActivityTagObject {
|
||||
type: 'Hashtag'
|
||||
type: 'Hashtag' | 'Mention'
|
||||
href?: string
|
||||
name: string
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import { ActivityTagObject } from './common-objects'
|
||||
|
||||
export interface VideoCommentObject {
|
||||
type: 'Note'
|
||||
id: string
|
||||
@@ -7,4 +9,5 @@ export interface VideoCommentObject {
|
||||
updated: string
|
||||
url: string
|
||||
attributedTo: string
|
||||
tag: ActivityTagObject[]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user