Skip to content

Commit 925761b

Browse files
committed
#RI-5624 - fix tests, fix links
1 parent 35df062 commit 925761b

File tree

16 files changed

+45
-45
lines changed

16 files changed

+45
-45
lines changed

docs/plugins/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ consistency with plugin visualisations and the entire application.
125125

126126
Find the example of the plugin here.
127127

128-
* [Client List Plugin README](https://github.com/RedisInsight/Packages/blob/main/clients-list-example/README.md)
129-
* [Client List Plugin dir](https://github.com/RedisInsight/Packages/blob/main/clients-list-example/)
128+
* [Client List Plugin README](https://github.com/Redis-Insight/Packages/blob/main/clients-list-example/README.md)
129+
* [Client List Plugin dir](https://github.com/Redis-Insight/Packages/blob/main/clients-list-example/)
130130

131131
### Available parameters
132132

docs/plugins/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Data visualization provided by the plugin is rendered within the
1111
Workbench results area and is based on the executed command, ie. a certain
1212
Redis command can generate its own custom data visualization.
1313

14-
We have included the following [plugin package example](https://github.com/RedisInsight/RedisInsight/tree/main/redisinsight/ui/src/packages/clients-list) for your reference: running the CLIENT LIST command presents the output in a tabular format for easier reading.
14+
We have included the following [plugin package example](https://github.com/Redis-Insight/Redis-Insight/tree/main/redisinsight/ui/src/packages/clients-list) for your reference: running the CLIENT LIST command presents the output in a tabular format for easier reading.
1515

1616
## Wiki
1717

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@
5757
},
5858
"repository": {
5959
"type": "git",
60-
"url": "git+https://github.com/RedisInsight/RedisInsight.git"
60+
"url": "git+https://github.com/Redis-Insight/Redis-Insight.git"
6161
},
6262
"author": {
6363
"name": "Redis Ltd.",
6464
"email": "[email protected]",
6565
"url": "https://redis.com/redis-enterprise/redis-insight"
6666
},
6767
"bugs": {
68-
"url": "https://github.com/RedisInsight/RedisInsight/issues"
68+
"url": "https://github.com/Redis-Insight/Redis-Insight/issues"
6969
},
7070
"keywords": [
7171
"redisinsight",
@@ -77,7 +77,7 @@
7777
"sass",
7878
"webpack"
7979
],
80-
"homepage": "https://github.com/RedisInsight/RedisInsight#readme",
80+
"homepage": "https://github.com/Redis-Insight/Redis-Insight#readme",
8181
"resolutions": {
8282
"**/node-sass": "^8.0.0",
8383
"**/trim": "0.0.3",

redisinsight/api/config/default.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,22 +131,22 @@ export default {
131131
},
132132
tutorials: {
133133
updateUrl: process.env.RI_TUTORIALS_UPDATE_URL
134-
|| 'https://github.com/RedisInsight/Tutorials/releases/download/2.42',
134+
|| 'https://github.com/Redis-Insight/Tutorials/releases/download/2.42',
135135
zip: process.env.RI_TUTORIALS_ZIP || dataZipFileName,
136136
buildInfo: process.env.RI_TUTORIALS_INFO || buildInfoFileName,
137137
devMode: !!process.env.RI_TUTORIALS_PATH,
138138
},
139139
content: {
140140
updateUrl: process.env.RI_CONTENT_UPDATE_URL
141-
|| 'https://github.com/RedisInsight/Statics/releases/download/2.42',
141+
|| 'https://github.com/Redis-Insight/Statics/releases/download/2.42',
142142
zip: process.env.RI_CONTENT_ZIP || dataZipFileName,
143143
buildInfo: process.env.RI_CONTENT_INFO || buildInfoFileName,
144144
devMode: !!process.env.RI_CONTENT_PATH,
145145
},
146146
notifications: {
147147
updateUrl: process.env.RI_NOTIFICATION_DEV_PATH
148148
|| process.env.RI_NOTIFICATION_UPDATE_URL
149-
|| 'https://github.com/RedisInsight/Notifications/releases/download/latest/notifications.json',
149+
|| 'https://github.com/Redis-Insight/Notifications/releases/download/latest/notifications.json',
150150
syncInterval: parseInt(process.env.RI_NOTIFICATION_SYNC_INTERVAL, 10) || 60 * 60 * 1000,
151151
queryLimit: parseInt(process.env.RI_NOTIFICATION_QUERY_LIMIT, 10) || 20,
152152
devMode: !!process.env.RI_NOTIFICATION_DEV_PATH,
@@ -222,7 +222,7 @@ export default {
222222
features_config: {
223223
url: process.env.RI_FEATURES_CONFIG_URL
224224
// eslint-disable-next-line max-len
225-
|| 'https://raw.githubusercontent.com/RedisInsight/RedisInsight/main/redisinsight/api/config/features-config.json',
225+
|| 'https://raw.githubusercontent.com/Redis-Insight/Redis-Insight/main/redisinsight/api/config/features-config.json',
226226
syncInterval: parseInt(process.env.RI_FEATURES_CONFIG_SYNC_INTERVAL, 10) || 1_000 * 60 * 60 * 24, // 24h
227227
},
228228
cloud: {

redisinsight/desktop/src/lib/menu/menu.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,13 +184,13 @@ export class MenuBuilder {
184184
{
185185
label: 'License Terms',
186186
click() {
187-
shell.openExternal('https://github.com/RedisInsight/RedisInsight/blob/main/LICENSE')
187+
shell.openExternal('https://github.com/Redis-Insight/Redis-Insight/blob/main/LICENSE')
188188
}
189189
},
190190
{
191191
label: 'Submit a Bug or Idea',
192192
click() {
193-
shell.openExternal('https://github.com/RedisInsight/RedisInsight/issues')
193+
shell.openExternal('https://github.com/Redis-Insight/Redis-Insight/issues')
194194
}
195195
},
196196
{
@@ -301,13 +301,13 @@ export class MenuBuilder {
301301
{
302302
label: 'License Terms',
303303
click() {
304-
shell.openExternal('https://github.com/RedisInsight/RedisInsight/blob/main/LICENSE')
304+
shell.openExternal('https://github.com/Redis-Insight/Redis-Insight/blob/main/LICENSE')
305305
}
306306
},
307307
{
308308
label: 'Submit a Bug or Idea',
309309
click() {
310-
shell.openExternal('https://github.com/RedisInsight/RedisInsight/issues')
310+
shell.openExternal('https://github.com/Redis-Insight/Redis-Insight/issues')
311311
}
312312
},
313313
{

redisinsight/desktop/views/cloud_outh_callback/callback.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h2 class="subTitle">
3636
In the case you are not redirected, check that your package supports <br> deep linking and try again.
3737
<br>
3838
<div style="margin-top: 4px"></div>
39-
If the issue persists, <a class="link" href="https://github.com/RedisInsight/RedisInsight/issues" target="_blank">report the issue.</a>
39+
If the issue persists, <a class="link" href="https://github.com/Redis-Insight/Redis-Insight/issues" target="_blank">report the issue.</a>
4040
</div>
4141
</section>
4242
</div>

redisinsight/ui/src/pages/database-analysis/components/recommendations-view/Recommendations.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ describe('Recommendations', () => {
430430
render(<Recommendations />)
431431

432432
expect(screen.queryByTestId('bigSets-redis-stack-link')).toBeInTheDocument()
433-
expect(screen.queryByTestId('bigSets-redis-stack-link')).toHaveAttribute('href', 'https://redis.io/docs/about/about-stack/')
433+
expect(screen.queryByTestId('bigSets-redis-stack-link')).toHaveAttribute('href', 'hhttps://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/')
434434
})
435435

436436
it('should render go tutorial button', () => {

redisinsight/ui/src/pages/home/components/databases-list-component/databases-list/components/delete-action/DeleteAction.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const DeleteAction = (props: Props) => {
6060
{selection.length}
6161
{' '}
6262
databases will be deleted from
63-
RedisInsight Databases:
63+
Redis Insight Databases:
6464
</p>
6565
</EuiText>
6666
<div

redisinsight/ui/src/pages/home/components/databases-list-component/databases-list/components/export-action/ExportAction.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const ExportAction = (props: Props) => {
5454
{selection.length}
5555
{' '}
5656
databases will be exported from
57-
RedisInsight Databases:
57+
Redis Insight Databases:
5858
</p>
5959
</EuiText>
6060
<div

redisinsight/ui/src/utils/oauth/parseCloudOAuthError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export const parseCloudOAuthError = (err: CustomError | string = DEFAULT_ERROR_M
131131
<>
132132
Your Redis Cloud authorization failed.
133133
<EuiSpacer size="xs" />
134-
Remove the invalid API key from RedisInsight and try again.
134+
Remove the invalid API key from Redis Insight and try again.
135135
<EuiSpacer size="s" />
136136
Open the Settings page to manage Redis Cloud API keys.
137137
</>

0 commit comments

Comments
 (0)