Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: fix broken links from lychee #5127

Merged
merged 4 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
dev-example-okta.com
.*-dsn.algolia.net
www.linkedin.com/company/getunleash
www.linkedin.com/in/*
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have some linkedin urls because of contributor contact details. There get 999 error by linkedin, so adding to ignore.

www.instagram.com/getunleash
twitter.com/getunleash

.*.unleash.host.*.com.*
unleash.*.com/api/
unleash.*.com
secure-unleash.herokuapp.com

localhost
Expand Down
2 changes: 1 addition & 1 deletion src/lib/openapi/spec/application-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const applicationSchema = {
description:
'A link to reference the application reporting the metrics. Could for instance be a GitHub link to the repository of the application',
type: 'string',
example: 'https://github.com/Unleash/unleash-client-proxy-js',
example: 'https://github.com/Unleash/unleash-proxy-client-js',
},
color: {
description: `The CSS color that is used to color the application's entry in the application list`,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/openapi/spec/create-application-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const createApplicationSchema = {
description:
'A link to reference the application reporting the metrics. Could for instance be a GitHub link to the repository of the application',
type: 'string',
example: 'https://github.com/Unleash/unleash-client-proxy-js',
example: 'https://github.com/Unleash/unleash-proxy-client-js',
},
color: {
description: `Css color to be used to color the application's entry in the application list`,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/openapi/spec/reset-password-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const resetPasswordSchema = {
'A URL pointing to a location where the user can reset their password',
type: 'string',
format: 'uri',
example: 'https://reset.password.com',
example: 'https://unleash.reset.com',
},
},
components: {},
Expand Down