Skip to content

Commit

Permalink
Allow only specific scope for migration
Browse files Browse the repository at this point in the history
  • Loading branch information
BSekula committed May 23, 2024
1 parent 2329f88 commit c4df262
Show file tree
Hide file tree
Showing 6 changed files with 231 additions and 5,070 deletions.
2 changes: 1 addition & 1 deletion lib/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-core",
"description": "Alfresco ADF core",
"version": "6.9.0",
"version": "6.10.0-9207592672",
"author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
Expand Down
18 changes: 9 additions & 9 deletions lib/core/schematics/migrations/collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,39 @@
"schematics": {
"move-out-alfresco-api": {
"description": "Update alfresco-api imports",
"version": "7.0.0",
"version": "6.10.0-9207592672",
"factory": "./7_0_0/index#updateAlfrescoApiImports"
}
},
"packageJsonUpdates": {
"move-out-alfresco-api": {
"version": "7.0.0",
"version": "6.10.0-9207592672",
"packages": {
"@alfresco/adf-content-services": {
"version": "7.0.0",
"version": "6.10.0-9207592672",
"alwaysAddToPackageJson": false
},
"@alfresco/adf-extensions": {
"version": "7.0.0",
"version": "6.10.0-9207592672",
"alwaysAddToPackageJson": false
},
"@alfresco/adf-process-services-cloud": {
"version": "7.0.0",
"version": "6.10.0-9207592672",
"alwaysAddToPackageJson": false
},
"@alfresco/adf-process-services": {
"version": "7.0.0",
"version": "6.10.0-9207592672",
"alwaysAddToPackageJson": false
},
"@alfresco/eslint-plugin-eslint-angular": {
"version": "7.0.0",
"version": "6.10.0-9207592672",
"alwaysAddToPackageJson": false
},
"@alfresco/js-api": {
"version": "10.0.0",
"version": "7.8.0",
"alwaysAddToPackageJson": false
}
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ export class NotificationCloudService extends BaseCloudService {
}

private get webSocketHost() {
return this.contextRoot.split('://')[1];
// return this.contextRoot.split('://')[1];
return 'hxps-rc.studio.dev.experience.hyland.com';
}

private get protocol() {
return this.contextRoot.split('://')[0] === 'https' ? 'wss' : 'ws';
return 'wss';
}

initNotificationsForApp(appName: string) {
Expand Down
Loading

0 comments on commit c4df262

Please sign in to comment.