aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-05-13 14:37:30 +0200
committerChocobozzz <me@florianbigard.com>2019-05-13 14:37:30 +0200
commit241c3357d13ac2fb4c8ffca6469e575388c1fac5 (patch)
tree0b9a374bd01f8e05ef85a14aeffc8bd3eb6f4eae /server/models
parentb59f12b0955d34b447a2bbcd3fbb0eb40b241631 (diff)
downloadPeerTube-241c3357d13ac2fb4c8ffca6469e575388c1fac5.tar.gz
PeerTube-241c3357d13ac2fb4c8ffca6469e575388c1fac5.tar.zst
PeerTube-241c3357d13ac2fb4c8ffca6469e575388c1fac5.zip
Fix account description error
Diffstat (limited to 'server/models')
-rw-r--r--server/models/account/account.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/models/account/account.ts b/server/models/account/account.ts
index c53312990..2b04acd86 100644
--- a/server/models/account/account.ts
+++ b/server/models/account/account.ts
@@ -3,7 +3,7 @@ import {
3 BeforeDestroy, 3 BeforeDestroy,
4 BelongsTo, 4 BelongsTo,
5 Column, 5 Column,
6 CreatedAt, 6 CreatedAt, DataType,
7 Default, 7 Default,
8 DefaultScope, 8 DefaultScope,
9 ForeignKey, 9 ForeignKey,
@@ -26,7 +26,7 @@ import { VideoCommentModel } from '../video/video-comment'
26import { UserModel } from './user' 26import { UserModel } from './user'
27import { AvatarModel } from '../avatar/avatar' 27import { AvatarModel } from '../avatar/avatar'
28import { VideoPlaylistModel } from '../video/video-playlist' 28import { VideoPlaylistModel } from '../video/video-playlist'
29import { WEBSERVER } from '../../initializers/constants' 29import { CONSTRAINTS_FIELDS, WEBSERVER } from '../../initializers/constants'
30import { Op, Transaction, WhereOptions } from 'sequelize' 30import { Op, Transaction, WhereOptions } from 'sequelize'
31 31
32export enum ScopeNames { 32export enum ScopeNames {
@@ -91,7 +91,7 @@ export class AccountModel extends Model<AccountModel> {
91 @AllowNull(true) 91 @AllowNull(true)
92 @Default(null) 92 @Default(null)
93 @Is('AccountDescription', value => throwIfNotValid(value, isAccountDescriptionValid, 'description', true)) 93 @Is('AccountDescription', value => throwIfNotValid(value, isAccountDescriptionValid, 'description', true))
94 @Column 94 @Column(DataType.STRING(CONSTRAINTS_FIELDS.USERS.DESCRIPTION.max))
95 description: string 95 description: string
96 96
97 @CreatedAt 97 @CreatedAt