Fix aot build
This commit is contained in:
parent
234b535dac
commit
ca309a9f64
|
@ -57,7 +57,7 @@
|
||||||
"markdown-it": "^8.4.0",
|
"markdown-it": "^8.4.0",
|
||||||
"ngx-bootstrap": "2.0.0-rc.0",
|
"ngx-bootstrap": "2.0.0-rc.0",
|
||||||
"ngx-chips": "1.6.2",
|
"ngx-chips": "1.6.2",
|
||||||
"ngx-clipboard": "^9.0.0",
|
"ngx-clipboard": "9.0.1",
|
||||||
"ngx-infinite-scroll": "0.7.2",
|
"ngx-infinite-scroll": "0.7.2",
|
||||||
"ngx-pipes": "^2.0.5",
|
"ngx-pipes": "^2.0.5",
|
||||||
"node-sass": "^4.1.1",
|
"node-sass": "^4.1.1",
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
|
|
||||||
<div class="transcoding-information" *ngIf="isTranscodingInformationDisplayed()">
|
<div class="transcoding-information" *ngIf="isTranscodingInformationDisplayed()">
|
||||||
Transcoding is enabled on server. The video quota only take in account <strong>original</strong> video. <br />
|
Transcoding is enabled on server. The video quota only take in account <strong>original</strong> video. <br />
|
||||||
In maximum, this user could use ~ {{ computeQuotaWithTranscoding() | bytes: 0 }}.
|
At most, this user could use ~ {{ computeQuotaWithTranscoding() | bytes: 0 }}.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"test.ts",
|
"test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts",
|
||||||
|
"../node_modules/ngx-clipboard/**/*.spec.ts"
|
||||||
|
],
|
||||||
|
"include": [
|
||||||
|
"**/*.ts",
|
||||||
|
"../node_modules/ngx-clipboard/*/**.ts"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
switch (process.env.NODE_ENV) {
|
|
||||||
case 'prod':
|
|
||||||
case 'production':
|
|
||||||
module.exports = require('./webpack/webpack.prod')({env: 'production'})
|
|
||||||
break
|
|
||||||
|
|
||||||
case 'test':
|
|
||||||
case 'testing':
|
|
||||||
module.exports = require('./webpack/webpack.test')({env: 'test'})
|
|
||||||
break
|
|
||||||
|
|
||||||
case 'dev':
|
|
||||||
case 'development':
|
|
||||||
default:
|
|
||||||
module.exports = require('./webpack/webpack.dev')({env: 'development'})
|
|
||||||
}
|
|
|
@ -4444,7 +4444,7 @@ ngx-chips@1.6.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
ng2-material-dropdown "~0.8.2"
|
ng2-material-dropdown "~0.8.2"
|
||||||
|
|
||||||
ngx-clipboard@^9.0.0:
|
ngx-clipboard@9.0.1:
|
||||||
version "9.0.1"
|
version "9.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/ngx-clipboard/-/ngx-clipboard-9.0.1.tgz#3829ef67d00a447303af4faf96c705de435d80f8"
|
resolved "https://registry.yarnpkg.com/ngx-clipboard/-/ngx-clipboard-9.0.1.tgz#3829ef67d00a447303af4faf96c705de435d80f8"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
|
@ -190,14 +190,21 @@ export class ActorFollowModel extends Model<ActorFollowModel> {
|
||||||
}
|
}
|
||||||
|
|
||||||
static listAcceptedFollowerSharedInboxUrls (actorIds: number[], t: Sequelize.Transaction) {
|
static listAcceptedFollowerSharedInboxUrls (actorIds: number[], t: Sequelize.Transaction) {
|
||||||
return ActorFollowModel.createListAcceptedFollowForApiQuery('followers', actorIds, t, undefined, undefined, 'sharedInboxUrl')
|
return ActorFollowModel.createListAcceptedFollowForApiQuery(
|
||||||
|
'DISTINCT(followers)',
|
||||||
|
actorIds,
|
||||||
|
t,
|
||||||
|
undefined,
|
||||||
|
undefined,
|
||||||
|
'sharedInboxUrl'
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
static listAcceptedFollowingUrlsForApi (actorIds: number[], t: Sequelize.Transaction, start?: number, count?: number) {
|
static listAcceptedFollowingUrlsForApi (actorIds: number[], t: Sequelize.Transaction, start?: number, count?: number) {
|
||||||
return ActorFollowModel.createListAcceptedFollowForApiQuery('following', actorIds, t, start, count)
|
return ActorFollowModel.createListAcceptedFollowForApiQuery('following', actorIds, t, start, count)
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async createListAcceptedFollowForApiQuery (type: 'followers' | 'following',
|
private static async createListAcceptedFollowForApiQuery (type: 'followers' | 'following' | 'DISTINCT(followers)',
|
||||||
actorIds: number[],
|
actorIds: number[],
|
||||||
t: Sequelize.Transaction,
|
t: Sequelize.Transaction,
|
||||||
start?: number,
|
start?: number,
|
||||||
|
|
Loading…
Reference in New Issue