diff --git a/catalyst-gateway/bin/README.md b/catalyst-gateway/bin/README.md index aef504f215d..3bbcef857fe 100644 --- a/catalyst-gateway/bin/README.md +++ b/catalyst-gateway/bin/README.md @@ -12,7 +12,7 @@ cargo build -p cat-gateway Before running `cat-gateway` you will need to spin up event-db. How to do it, you can read this [README.md]( -https://github.com/input-output-hk/catalyst-core/blob/main/src/event-db/Readme.md#starting-a-local-test-db-with-docker +https://github.com/input-output-hk/catalyst-voices/blob/main/catalyst-gateway/event-db/Readme.md#starting-a-local-test-db-with-docker ). To run with the specific jorm mock state cleanup timeout you can specify `JORM_CLEANUP_TIMEOUT` env var. diff --git a/catalyst-gateway/bin/src/service/api/mod.rs b/catalyst-gateway/bin/src/service/api/mod.rs index 0a203e9ced0..9392e0d4c39 100644 --- a/catalyst-gateway/bin/src/service/api/mod.rs +++ b/catalyst-gateway/bin/src/service/api/mod.rs @@ -57,7 +57,7 @@ fn get_api_license() -> LicenseObject { /// Get the terms of service for the API const TERMS_OF_SERVICE: &str = - "https://github.com/input-output-hk/catalyst-core/blob/main/book/src/98_CODE_OF_CONDUCT.md"; + "https://github.com/input-output-hk/catalyst-voices/blob/main/CODE_OF_CONDUCT.md"; /// Create the `OpenAPI` definition pub(crate) fn mk_api( diff --git a/catalyst-gateway/bin/src/settings.rs b/catalyst-gateway/bin/src/settings.rs index e0a45150761..3b366d052e6 100644 --- a/catalyst-gateway/bin/src/settings.rs +++ b/catalyst-gateway/bin/src/settings.rs @@ -20,10 +20,10 @@ const ADDRESS_DEFAULT: &str = "0.0.0.0:3030"; const GITHUB_REPO_OWNER_DEFAULT: &str = "input-output-hk"; /// Default Github repo name -const GITHUB_REPO_NAME_DEFAULT: &str = "catalyst-core"; +const GITHUB_REPO_NAME_DEFAULT: &str = "catalyst-voices"; /// Default Github issue template to use -const GITHUB_ISSUE_TEMPLATE_DEFAULT: &str = "bug_report.md"; +const GITHUB_ISSUE_TEMPLATE_DEFAULT: &str = "bug_report.yml"; /// Default `CLIENT_ID_KEY` used in development. const CLIENT_ID_KEY_DEFAULT: &str = "3db5301e-40f2-47ed-ab11-55b37674631a"; @@ -242,7 +242,7 @@ pub(crate) fn get_api_host_names(addr: &SocketAddr) -> Vec { /// # use cat_data_service::settings::generate_github_issue_url; /// assert_eq!( /// generate_github_issue_url("Hello, World! How are you?"), -/// "https://github.com/input-output-hk/catalyst-core/issues/new?template=bug_report.md&title=Hello%2C%20World%21%20How%20are%20you%3F" +/// "https://github.com/input-output-hk/catalyst-voices/issues/new?template=bug_report.yml&title=Hello%2C%20World%21%20How%20are%20you%3F" /// ); /// ``` pub(crate) fn generate_github_issue_url(title: &str) -> Option { @@ -278,7 +278,7 @@ mod tests { let title = "Hello, World! How are you?"; assert_eq!( generate_github_issue_url(title).expect("Failed to generate url").as_str(), - "https://github.com/input-output-hk/catalyst-core/issues/new?template=bug_report.md&title=Hello%2C+World%21+How+are+you%3F" + "https://github.com/input-output-hk/catalyst-voices/issues/new?template=bug_report.yml&title=Hello%2C+World%21+How+are+you%3F" ); }