File tree Expand file tree Collapse file tree 7 files changed +6
-15
lines changed Expand file tree Collapse file tree 7 files changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ PARSEC_APP_CLEAR_CACHE="true"
12
12
PARSEC_APP_TESTBED_AUTO_LOGIN = " true"
13
13
PARSEC_APP_ACCOUNT_SERVER = " parsec3://dev-account.parsec.cloud"
14
14
PARSEC_APP_DEFAULT_LIB_LOG_LEVEL = " DEBUG"
15
+ PARSEC_APP_DEFAULT_CRYPTPAD_SERVER = " https://cryptpad-dev.parsec.cloud"
Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ PARSEC_APP_BMS_MOCKED_FUNCTIONS=""
8
8
PARSEC_APP_BMS_FAIL_FUNCTIONS=""
9
9
PARSEC_APP_CREATE_DEFAULT_WORKSPACES="false"
10
10
PARSEC_APP_TESTBED_AUTO_LOGIN="false"
11
+ PARSEC_APP_DEFAULT_CRYPTPAD_SERVER="https://cryptpad-dev.parsec.cloud"
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ PARSEC_APP_SIGN_URL=https://sign.parsec.cloud
4
4
PARSEC_APP_SAAS_SERVERS = " saas-v3.parsec.cloud"
5
5
PARSEC_APP_TRIAL_SERVERS = " trial.parsec.cloud"
6
6
PARSEC_APP_ENABLE_CUSTOM_BRANDING = true
7
+ PARSEC_APP_DEFAULT_CRYPTPAD_SERVER = " https://cryptpad.parsec.cloud"
Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ PARSEC_APP_SAAS_SERVERS="saas-v3.parsec.cloud;saas-demo-v3-mightyfairy.parsec.cl
5
5
PARSEC_APP_TRIAL_SERVERS="trial.parsec.cloud"
6
6
PARSEC_APP_DEFAULT_LIB_LOG_LEVEL="DEBUG"
7
7
PARSEC_APP_ENABLE_CUSTOM_BRANDING=true
8
+ PARSEC_APP_DEFAULT_CRYPTPAD_SERVER="https://cryptpad.parsec.cloud"
Original file line number Diff line number Diff line change @@ -581,19 +581,6 @@ export function setupContentSecurityPolicy(customScheme: string): void {
581
581
CspDirective . WorkerSrc ,
582
582
] ,
583
583
} ,
584
- {
585
- domain : 'https://centakina.ddns.net' ,
586
- directives : [
587
- CspDirective . DefaultSrc ,
588
- CspDirective . ScriptSrc ,
589
- CspDirective . ConnectSrc ,
590
- CspDirective . ImgSrc ,
591
- CspDirective . StyleSrc ,
592
- CspDirective . FontSrc ,
593
- CspDirective . FrameSrc ,
594
- CspDirective . WorkerSrc ,
595
- ] ,
596
- } ,
597
584
{
598
585
domain : 'https://*.stripe.com' ,
599
586
directives : [
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ async function openTOS(tosLink: string): Promise<void> {
220
220
221
221
const ENABLE_EDITICS_VARIABLE = 'PARSEC_APP_ENABLE_EDITICS' ;
222
222
const CRYPTPAD_SERVER_VARIABLE = 'PARSEC_APP_DEFAULT_CRYPTPAD_SERVER' ;
223
- const DEFAULT_CRYPTPAD_SERVER = 'https://centakina.ddns.net ' ;
223
+ const DEFAULT_CRYPTPAD_SERVER = 'https://cryptpad-dev.parsec.cloud ' ;
224
224
225
225
function isEditicsEnabled ( ) : boolean {
226
226
return import . meta. env [ ENABLE_EDITICS_VARIABLE ] === 'true' || ( window as any ) . TESTING_ENABLE_EDITICS === true ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { expect } from '@playwright/test';
4
4
import { MsPage } from '@tests/e2e/helpers/types' ;
5
5
6
6
// cspell:disable-next-line
7
- export const CRYPTPAD_SERVER = 'centakina.ddns.net ' ;
7
+ export const CRYPTPAD_SERVER = 'cryptpad-dev.parsec.cloud ' ;
8
8
9
9
interface MockCryptpadOptions {
10
10
timeout ?: boolean ;
You can’t perform that action at this time.
0 commit comments