Skip to content

Commit

Permalink
fix: cleanup IOHK reference (#325)
Browse files Browse the repository at this point in the history
Signed-off-by: FabioPinheiro <fabiomgpinheiro@gmail.com>
  • Loading branch information
FabioPinheiro authored Jul 8, 2024
1 parent ed128f0 commit cd8dee9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ You can open the `http://localhost:8080/` URL in a web browser, and it will show
### Docker only

It is possible to run everything with a single command with Docker compose docker-compose.yml
The latest stable image version is available in the IOHK repositories.
The latest stable image version is available in the Hyperledger Identus-Mediator repository.
To build a docker image locally, run `NODE_OPTIONS=--openssl-legacy-provider sbt docker:publishLocal`.

```shell
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ lazy val mediator = project
)
.settings(
Compile / mainClass := Some("org.hyperledger.identus.mediator.MediatorStandalone"),
Docker / maintainer := "atala-coredid@iohk.io",
Docker / maintainer := "atala@iohk.io",
Docker / dockerUsername := Some("input-output-hk"),
Docker / dockerRepository := Some("ghcr.io"),
Docker / packageName := "identus-mediator",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object IndexHtml {
|<html>
|<head>
| <meta charset="UTF-8">
| <title>IOHK Mediator</title>
| <title>Identus Mediator</title>
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| <meta name="did" content="${identity.did}">
| <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ object App {
div(
AppUtils.drawer(linkPages, MyRouter.router.currentPageSignal),
AppUtils.drawerScrim,
AppUtils.topBarHeader(MyRouter.router.currentPageSignal.map { case p: MediatorPage.type => "IOHK Mediator" }),
AppUtils.topBarHeader(
MyRouter.router.currentPageSignal.map { case p: MediatorPage.type =>
"Identus Mediator"
}
),
mainTag(
className("mdc-top-app-bar--fixed-adjust"),
child <-- $selectedApp.signal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ object AppUtils {
div(
className("mdc-drawer__header"),
h3(className("mdc-drawer__title"), "Hyperledger - Identus Mediator"),
h6(className("mdc-drawer__subtitle"), "atlaprism@iohk.io"),
h6(className("mdc-drawer__subtitle"), "atala@iohk.io"),
),
div(
className("mdc-drawer__content"),
Expand Down

0 comments on commit cd8dee9

Please sign in to comment.