aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-04-05 14:56:28 +0200
committerChocobozzz <chocobozzz@cpy.re>2022-04-15 09:49:35 +0200
commitbfbdfc584a4f0cd078fc159b2eb59e872873f592 (patch)
tree3088974dc9a8afbde455137143f719c8e39a32d3 /shared
parentcf158e7e24c5b601ea07525b2f629b46ff37b042 (diff)
downloadPeerTube-bfbdfc584a4f0cd078fc159b2eb59e872873f592.tar.gz
PeerTube-bfbdfc584a4f0cd078fc159b2eb59e872873f592.tar.zst
PeerTube-bfbdfc584a4f0cd078fc159b2eb59e872873f592.zip
Add event doc to view endpoint
Diffstat (limited to 'shared')
-rw-r--r--shared/models/activitypub/objects/index.ts1
-rw-r--r--shared/models/activitypub/objects/view-object.ts5
2 files changed, 0 insertions, 6 deletions
diff --git a/shared/models/activitypub/objects/index.ts b/shared/models/activitypub/objects/index.ts
index 47a8e847a..9aa3c462c 100644
--- a/shared/models/activitypub/objects/index.ts
+++ b/shared/models/activitypub/objects/index.ts
@@ -7,5 +7,4 @@ export * from './playlist-element-object'
7export * from './playlist-object' 7export * from './playlist-object'
8export * from './video-comment-object' 8export * from './video-comment-object'
9export * from './video-torrent-object' 9export * from './video-torrent-object'
10export * from './view-object'
11export * from './watch-action-object' 10export * from './watch-action-object'
diff --git a/shared/models/activitypub/objects/view-object.ts b/shared/models/activitypub/objects/view-object.ts
deleted file mode 100644
index 4dd21ce8e..000000000
--- a/shared/models/activitypub/objects/view-object.ts
+++ /dev/null
@@ -1,5 +0,0 @@
1export interface ViewObject {
2 type: 'View'
3 actor: string
4 object: string
5}