Skip to content

Commit 5fa9c0c

Browse files
authored
Merge pull request #3246 from Redis-Insight/fe/feature/RI-5624
#RI-5624 - change links to repo
2 parents 6ce0521 + 6709161 commit 5fa9c0c

File tree

14 files changed

+30
-30
lines changed

14 files changed

+30
-30
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/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/)
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/)
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/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.
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.
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/Redis-Insight/Redis-Insight.git"
60+
"url": "git+https://github.com/RedisInsight/RedisInsight.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/Redis-Insight/Redis-Insight/issues"
68+
"url": "https://github.com/RedisInsight/RedisInsight/issues"
6969
},
7070
"keywords": [
7171
"redisinsight",
@@ -77,7 +77,7 @@
7777
"sass",
7878
"webpack"
7979
],
80-
"homepage": "https://github.com/Redis-Insight/Redis-Insight#readme",
80+
"homepage": "https://github.com/RedisInsight/RedisInsight#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/Redis-Insight/Tutorials/releases/download/2.42',
134+
|| 'https://github.com/RedisInsight/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/Redis-Insight/Statics/releases/download/2.42',
141+
|| 'https://github.com/RedisInsight/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/Redis-Insight/Notifications/releases/download/latest/notifications.json',
149+
|| 'https://github.com/RedisInsight/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/Redis-Insight/Redis-Insight/main/redisinsight/api/config/features-config.json',
225+
|| 'https://raw.githubusercontent.com/RedisInsight/RedisInsight/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/Redis-Insight/Redis-Insight/blob/main/LICENSE')
187+
shell.openExternal('https://github.com/RedisInsight/RedisInsight/blob/main/LICENSE')
188188
}
189189
},
190190
{
191191
label: 'Submit a Bug or Idea',
192192
click() {
193-
shell.openExternal('https://github.com/Redis-Insight/Redis-Insight/issues')
193+
shell.openExternal('https://github.com/RedisInsight/RedisInsight/issues')
194194
}
195195
},
196196
{
@@ -301,13 +301,13 @@ export class MenuBuilder {
301301
{
302302
label: 'License Terms',
303303
click() {
304-
shell.openExternal('https://github.com/Redis-Insight/Redis-Insight/blob/main/LICENSE')
304+
shell.openExternal('https://github.com/RedisInsight/RedisInsight/blob/main/LICENSE')
305305
}
306306
},
307307
{
308308
label: 'Submit a Bug or Idea',
309309
click() {
310-
shell.openExternal('https://github.com/Redis-Insight/Redis-Insight/issues')
310+
shell.openExternal('https://github.com/RedisInsight/RedisInsight/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/Redis-Insight/Redis-Insight/issues" target="_blank">report the issue.</a>
39+
If the issue persists, <a class="link" href="https://github.com/RedisInsight/RedisInsight/issues" target="_blank">report the issue.</a>
4040
</div>
4141
</section>
4242
</div>

redisinsight/ui/src/components/consents-settings/ConsentsSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ const ConsentsSettings = ({ onSubmitted }: Props) => {
279279
<EuiLink
280280
external={false}
281281
target="_blank"
282-
href="https://github.com/Redis-Insight/Redis-Insight/blob/main/LICENSE"
282+
href="https://github.com/RedisInsight/RedisInsight/blob/main/LICENSE"
283283
>
284284
Server Side Public License
285285
</EuiLink>

redisinsight/ui/src/components/onboarding-features/OnboardingFeatures.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ const ONBOARDING_FEATURES = {
221221
<EuiSpacer size="xs" />
222222
Workbench visualizes complex <a href={EXTERNAL_LINKS.redisStack} target="_blank" rel="noreferrer">Redis Stack</a> data
223223
models such as documents, graphs, and time series.
224-
Or you <a href="https://github.com/Redis-Insight/Packages" target="_blank" rel="noreferrer">can build your own visualization</a>.
224+
Or you <a href="https://github.com/RedisInsight/Packages" target="_blank" rel="noreferrer">can build your own visualization</a>.
225225

226226
{isString(firstIndex) && (
227227
<>
@@ -309,7 +309,7 @@ const ONBOARDING_FEATURES = {
309309
<>
310310
Share your Redis expertise with your team and the wider community by building custom Redis Insight tutorials.
311311
<EuiSpacer size="xs" />
312-
Use our <a href="https://github.com/Redis-Insight/Tutorials" target="_blank" rel="noreferrer">instructions</a> to
312+
Use our <a href={EXTERNAL_LINKS.guidesRepo} target="_blank" rel="noreferrer">instructions</a> to
313313
describe your implementations of Redis for other users to follow and
314314
interact with in the context of a connected Redis database
315315
</>

redisinsight/ui/src/components/recommendation-voting/RecommendationVoting.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe('RecommendationVoting', () => {
5353
fireEvent.click(screen.getByTestId('not useful-vote-btn'))
5454
await waitForEuiPopoverVisible()
5555

56-
expect(document.querySelector('[data-test-subj="github-repo-link"]')).toHaveAttribute('href', 'https://github.com/Redis-Insight/Redis-Insight/issues/new/choose')
56+
expect(document.querySelector('[data-test-subj="github-repo-link"]')).toHaveAttribute('href', 'https://github.com/RedisInsight/RedisInsight/issues/new/choose')
5757
})
5858

5959
it('should render proper popover and btn should be disabled"', async () => {

redisinsight/ui/src/constants/links.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { CloudSsoUtmCampaign, OAuthSocialSource } from 'uiSrc/slices/interfaces'
22

33
export const EXTERNAL_LINKS = {
4-
githubRepo: 'https://github.com/Redis-Insight/Redis-Insight',
5-
githubIssues: 'https://github.com/Redis-Insight/Redis-Insight/issues',
6-
releaseNotes: 'https://github.com/Redis-Insight/Redis-Insight/releases',
4+
githubRepo: 'https://github.com/RedisInsight/RedisInsight',
5+
githubIssues: 'https://github.com/RedisInsight/RedisInsight/issues',
6+
releaseNotes: 'https://github.com/RedisInsight/RedisInsight/releases',
77
userSurvey: 'https://www.surveymonkey.com/r/redisinsight',
8-
recommendationFeedback: 'https://github.com/Redis-Insight/Redis-Insight/issues/new/choose',
9-
guidesRepo: 'https://github.com/Redis-Insight/Tutorials',
8+
recommendationFeedback: 'https://github.com/RedisInsight/RedisInsight/issues/new/choose',
9+
guidesRepo: 'https://github.com/RedisInsight/Tutorials',
1010
redisStack: 'https://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/',
1111
cloudConsole: 'https://app.redislabs.com/#/databases',
1212
tryFree: 'https://redis.com/try-free',

0 commit comments

Comments
 (0)