Преглед изворни кода

Display all user history

Not limited to instance federation bubble
tags/v4.1.0-rc.1
Chocobozzz пре 1 година
родитељ
комит
ac75f640fe
No known key found for this signature in database GPG Key ID: 583A612D890159BE
1 измењених фајлова са 2 додато и 7 уклоњено
  1. +2
    -7
      server/models/user/user-video-history.ts

+ 2
- 7
server/models/user/user-video-history.ts Прегледај датотеку

@@ -57,19 +57,14 @@ export class UserVideoHistoryModel extends Model<Partial<AttributesOnly<UserVide
})
User: UserModel

static async listForApi (user: MUserAccountId, start: number, count: number, search?: string) {
const serverActor = await getServerActor()

static listForApi (user: MUserAccountId, start: number, count: number, search?: string) {
return VideoModel.listForApi({
start,
count,
search,
sort: '-"userVideoHistory"."updatedAt"',
nsfw: null, // All
displayOnlyForFollower: {
actorId: serverActor.id,
orLocalVideos: true
},
displayOnlyForFollower: null,
user,
historyOfUser: user
})


Loading…
Откажи
Сачувај