Skip to content

Commit

Permalink
chore: update references
Browse files Browse the repository at this point in the history
  • Loading branch information
kharkevich committed Feb 17, 2025
1 parent 7581e88 commit 1275657
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The following tools should be installed for local development:
* Python

```shell
git clone https://github.com/data-platform-hq/mlflow-oidc-auth
git clone https://github.com/mlflow-oidc/mlflow-oidc-auth
cd mlflow-oidc-auth
./scripts/run-dev-server.sh
```
Expand Down
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The following tools should be installed for local development:
* Python

```shell
git clone https://github.com/data-platform-hq/mlflow-oidc-auth
git clone https://github.com/mlflow-oidc/mlflow-oidc-auth
cd mlflow-oidc-auth
./scripts/run-dev-server.sh
```
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<script>
window.$docsify = {
name: 'mlflow-oidc-auth',
repo: 'https://github.com/data-platform-hq/mlflow-oidc-auth',
repo: 'https://github.com/mlflow-oidc/mlflow-oidc-auth',
loadSidebar: true,
loadNavbar: true,
};
Expand Down
2 changes: 1 addition & 1 deletion mlflow_oidc_auth/responses/client_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def make_forbidden_response() -> Response:

def make_basic_auth_response() -> Response:
response = make_response(
"You are not authenticated. Please see documentation for details" "https://github.com/data-platform-hq/mlflow-oidc-auth"
"You are not authenticated. Please see documentation for details" "https://github.com/mlflow-oidc/mlflow-oidc-auth"
)
response.status_code = 401
response.headers["WWW-Authenticate"] = 'Basic realm="mlflow"'
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ email = "[email protected]"
file = "LICENSE"

[project.urls]
homepage = "https://github.com/data-platform-hq/mlflow-oidc-auth"
issues = "https://github.com/data-platform-hq/mlflow-oidc-auth/issues"
documentation = "https://github.com/data-platform-hq/mlflow-oidc-auth/tree/main/docs/"
repository = "https://github.com/data-platform-hq/mlflow-oidc-auth"
homepage = "https://github.com/mlflow-oidc/mlflow-oidc-auth"
issues = "https://github.com/mlflow-oidc/mlflow-oidc-auth/issues"
documentation = "https://github.com/mlflow-oidc/mlflow-oidc-auth/tree/main/docs/"
repository = "https://github.com/mlflow-oidc/mlflow-oidc-auth"

[project.entry-points."mlflow.app"]
oidc-auth = "mlflow_oidc_auth.app:app"
Expand Down
4 changes: 2 additions & 2 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sonar.projectKey=data-platform-hq_mlflow-oidc-auth
sonar.organization=data-platform-hq
sonar.projectKey=mlflow-oidc_mlflow-oidc-auth
sonar.organization=mlflow-oidc

sonar.python.version=3.11
sonar.python.coverage.reportPaths=coverage.xml
Expand Down

0 comments on commit 1275657

Please sign in to comment.