Skip to content

Commit

Permalink
fix: redirect omni feedback to omni repo
Browse files Browse the repository at this point in the history
Now that `omni` repo is public we can use it.

Signed-off-by: Andrey Smirnov <[email protected]>
  • Loading branch information
smira committed Feb 29, 2024
1 parent dfcbaae commit 69dba26
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
7 changes: 4 additions & 3 deletions frontend/src/api/resources.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// This Runtime Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// Copyright (c) 2024 Sidero Labs, Inc.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.

// THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/THeader/THeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ included in the LICENSE file.
<t-icon class="t-header-nav-icon" icon="info" />
<span class="t-header-nav-name">Documentation</span>
</a>
<a href="https://github.com/siderolabs/omni-feedback/issues" target="_blank" class="flex hover:text-naturals-N14">
<a href="https://github.com/siderolabs/omni/issues" target="_blank" class="flex hover:text-naturals-N14">
<t-icon class="t-header-nav-icon" icon="check-in-circle" />
<span class="t-header-nav-name">Report an issue</span>
</a>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/methods/key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ const registerInterceptors = () => {
} else if (url.indexOf("/image/") == 0) {
config.headers.set(TimestampHeaderKey, ts);

const sha256 = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855";
const sha256 = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"; // empty string sha256
const payload = [config.method ?? "GET", url, ts, sha256].join("\n");
const signature = await signDetached(payload);
const fingerprint = keys?.publicKey.getFingerprint();
Expand Down
2 changes: 1 addition & 1 deletion hack/test/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ nice -n 10 ${ARTIFACTS}/omni-linux-amd64 \
--advertised-api-url "${BASE_URL}" \
--auth-auth0-client-id jS47T064CfFE1IqqIYZ8HfYLkZhFoa1Y \
--auth-auth0-domain sidero-omni-dev.us.auth0.com \
--initial-users ${AUTH_USERNAME} \
--initial-users "${AUTH_USERNAME}" \
--private-key-source "vault://secret/omni-private-key" \
--public-key-files "internal/backend/runtime/omni/testdata/pgp/new_key.public" \
--bind-addr 0.0.0.0:8099 \
Expand Down
7 changes: 4 additions & 3 deletions internal/internal/tools/tsgen/ts.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// This Runtime Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// Copyright (c) 2024 Sidero Labs, Inc.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.

// THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.

Expand Down
2 changes: 1 addition & 1 deletion internal/version/data/tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.20.0
undefined

0 comments on commit 69dba26

Please sign in to comment.