X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmodels%2Fvideo%2Fvideo-blacklist.ts;h=9247d0e2b1fd5fff6964382b44879768d2eb4755;hb=8c4bbd946d2247c2e239cbbf8773d2d31c1a57aa;hp=aa18896da05a7360da197f42a76fd6a1c19a4045;hpb=b49f22d8f9a52ab75fd38db2d377249eb58fa678;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/models/video/video-blacklist.ts b/server/models/video/video-blacklist.ts index aa18896da..9247d0e2b 100644 --- a/server/models/video/video-blacklist.ts +++ b/server/models/video/video-blacklist.ts @@ -1,10 +1,11 @@ import { FindOptions } from 'sequelize' import { AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript' import { MVideoBlacklist, MVideoBlacklistFormattable } from '@server/types/models' +import { AttributesOnly } from '@shared/typescript-utils' import { VideoBlacklist, VideoBlacklistType } from '../../../shared/models/videos' import { isVideoBlacklistReasonValid, isVideoBlacklistTypeValid } from '../../helpers/custom-validators/video-blacklist' import { CONSTRAINTS_FIELDS } from '../../initializers/constants' -import { getBlacklistSort, searchAttribute, SortType, throwIfNotValid } from '../utils' +import { getBlacklistSort, searchAttribute, throwIfNotValid } from '../shared' import { ThumbnailModel } from './thumbnail' import { VideoModel } from './video' import { ScopeNames as VideoChannelScopeNames, SummaryOptions, VideoChannelModel } from './video-channel' @@ -18,7 +19,7 @@ import { ScopeNames as VideoChannelScopeNames, SummaryOptions, VideoChannelModel } ] }) -export class VideoBlacklistModel extends Model { +export class VideoBlacklistModel extends Model>> { @AllowNull(true) @Is('VideoBlacklistReason', value => throwIfNotValid(value, isVideoBlacklistReasonValid, 'reason', true)) @@ -56,7 +57,7 @@ export class VideoBlacklistModel extends Model { static listForApi (parameters: { start: number count: number - sort: SortType + sort: string search?: string type?: VideoBlacklistType }) { @@ -66,7 +67,7 @@ export class VideoBlacklistModel extends Model { return { offset: start, limit: count, - order: getBlacklistSort(sort.sortModel, sort.sortValue) + order: getBlacklistSort(sort) } }