diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-05 13:54:32 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | 345da516fae80f24c90c2196e96393b489af2243 (patch) | |
tree | 64d72d25a531626c1d4a6337460dae4e32386f2a /server/initializers/constants.ts | |
parent | 297067399db2bf7505561d67667ca0d559a8e42b (diff) | |
download | PeerTube-345da516fae80f24c90c2196e96393b489af2243.tar.gz PeerTube-345da516fae80f24c90c2196e96393b489af2243.tar.zst PeerTube-345da516fae80f24c90c2196e96393b489af2243.zip |
WIP plugins: add ability to register plugins
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r-- | server/initializers/constants.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index abd9c2003..8ceefbd0e 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -277,6 +277,10 @@ let CONSTRAINTS_FIELDS = { | |||
277 | CONTACT_FORM: { | 277 | CONTACT_FORM: { |
278 | FROM_NAME: { min: 1, max: 120 }, // Length | 278 | FROM_NAME: { min: 1, max: 120 }, // Length |
279 | BODY: { min: 3, max: 5000 } // Length | 279 | BODY: { min: 3, max: 5000 } // Length |
280 | }, | ||
281 | PLUGINS: { | ||
282 | NAME: { min: 1, max: 214 }, // Length | ||
283 | DESCRIPTION: { min: 1, max: 20000 } // Length | ||
280 | } | 284 | } |
281 | } | 285 | } |
282 | 286 | ||
@@ -578,6 +582,11 @@ const P2P_MEDIA_LOADER_PEER_VERSION = 2 | |||
578 | 582 | ||
579 | // --------------------------------------------------------------------------- | 583 | // --------------------------------------------------------------------------- |
580 | 584 | ||
585 | const PLUGIN_GLOBAL_CSS_FILE_NAME = 'plugins-global.css' | ||
586 | const PLUGIN_GLOBAL_CSS_PATH = join(CONFIG.STORAGE.TMP_DIR, PLUGIN_GLOBAL_CSS_FILE_NAME) | ||
587 | |||
588 | // --------------------------------------------------------------------------- | ||
589 | |||
581 | // Special constants for a test instance | 590 | // Special constants for a test instance |
582 | if (isTestInstance() === true) { | 591 | if (isTestInstance() === true) { |
583 | PRIVATE_RSA_KEY_SIZE = 1024 | 592 | PRIVATE_RSA_KEY_SIZE = 1024 |
@@ -650,6 +659,8 @@ export { | |||
650 | REMOTE_SCHEME, | 659 | REMOTE_SCHEME, |
651 | FOLLOW_STATES, | 660 | FOLLOW_STATES, |
652 | SERVER_ACTOR_NAME, | 661 | SERVER_ACTOR_NAME, |
662 | PLUGIN_GLOBAL_CSS_FILE_NAME, | ||
663 | PLUGIN_GLOBAL_CSS_PATH, | ||
653 | PRIVATE_RSA_KEY_SIZE, | 664 | PRIVATE_RSA_KEY_SIZE, |
654 | ROUTE_CACHE_LIFETIME, | 665 | ROUTE_CACHE_LIFETIME, |
655 | SORTABLE_COLUMNS, | 666 | SORTABLE_COLUMNS, |