]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/types/models/server/server.ts
Add video file size info in admin videos list
[github/Chocobozzz/PeerTube.git] / server / types / models / server / server.ts
index b35e55aeb556d1e139f41438487239217adc788c..876186fc0bde041a2dba060a69da1926b8af3331 100644 (file)
@@ -1,5 +1,5 @@
 import { ServerModel } from '../../../models/server/server'
-import { FunctionProperties, PickWith } from '../../utils'
+import { FunctionProperties, PickWith } from '@shared/core-utils'
 import { MAccountBlocklistId } from '../account'
 
 type Use<K extends keyof ServerModel, M> = PickWith<ServerModel, K, M>
@@ -15,7 +15,7 @@ export type MServerRedundancyAllowed = Pick<MServer, 'redundancyAllowed'>
 
 export type MServerHostBlocks =
   MServerHost &
-  Use<'BlockedByAccounts', MAccountBlocklistId[]>
+  Use<'BlockedBy', MAccountBlocklistId[]>
 
 // ############################################################################