From 9339222252cf01703140f6fe14890d5998b589c8 Mon Sep 17 00:00:00 2001 From: Ryc O'Chet Date: Sun, 12 Apr 2026 21:50:46 +0100 Subject: [PATCH 1/6] infrastructure and docs --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/workflows/nightly.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- CONTRIBUTING.md | 2 +- Dockerfile | 6 +++--- Dockerfile.distroless | 6 +++--- Makefile | 6 +++--- README.md | 14 +++++++------- SECURITY.md | 2 +- assets/discohook.json | 6 +++--- docker-compose.example.yml | 2 +- 12 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d9ae3c003..6ab66c32b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,7 @@ name: Bug report about: Create a report to help improve Tinyauth title: "[BUG]" labels: bug -assignees: steveiliop56 +assignees: tinyauthapp --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index b933db82a..e9e2b8e36 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,7 +3,7 @@ name: Feature request about: Suggest an idea for this project title: "[FEATURE]" labels: enhancement -assignees: steveiliop56 +assignees: tinyauthapp --- diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2278a3dca..ad7ee005e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -80,7 +80,7 @@ jobs: - name: Build run: | cp -r frontend/dist internal/assets/dist - go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth + go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth env: CGO_ENABLED: 0 @@ -126,7 +126,7 @@ jobs: - name: Build run: | cp -r frontend/dist internal/assets/dist - go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth + go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth env: CGO_ENABLED: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 241f92f38..9da485fce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,7 +56,7 @@ jobs: - name: Build run: | cp -r frontend/dist internal/assets/dist - go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth + go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth env: CGO_ENABLED: 0 @@ -99,7 +99,7 @@ jobs: - name: Build run: | cp -r frontend/dist internal/assets/dist - go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth + go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth env: CGO_ENABLED: 0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 80239bde7..2b4431490 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ Contributing to Tinyauth is straightforward. Follow the steps below to set up a Start by cloning the repository: ```sh -git clone https://github.com/steveiliop56/tinyauth +git clone https://github.com/tinyauthapp/tinyauth cd tinyauth ``` diff --git a/Dockerfile b/Dockerfile index f0ab93741..7218ef40b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,9 +38,9 @@ COPY ./internal ./internal COPY --from=frontend-builder /frontend/dist ./internal/assets/dist RUN CGO_ENABLED=0 go build -ldflags "-s -w \ - -X github.com/steveiliop56/tinyauth/internal/config.Version=${VERSION} \ - -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \ - -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth + -X github.com/tinyauthapp/tinyauth/internal/config.Version=${VERSION} \ + -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \ + -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth # Runner FROM alpine:3.23 AS runner diff --git a/Dockerfile.distroless b/Dockerfile.distroless index 98988fabc..fdea2d74d 100644 --- a/Dockerfile.distroless +++ b/Dockerfile.distroless @@ -40,9 +40,9 @@ COPY --from=frontend-builder /frontend/dist ./internal/assets/dist RUN mkdir -p data RUN CGO_ENABLED=0 go build -ldflags "-s -w \ - -X github.com/steveiliop56/tinyauth/internal/config.Version=${VERSION} \ - -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \ - -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth + -X github.com/tinyauthapp/tinyauth/internal/config.Version=${VERSION} \ + -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \ + -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth # Runner FROM gcr.io/distroless/static-debian12:latest AS runner diff --git a/Makefile b/Makefile index cecac2151..a9ed57afb 100644 --- a/Makefile +++ b/Makefile @@ -37,9 +37,9 @@ webui: clean-webui # Build the binary binary: webui CGO_ENABLED=$(CGO_ENABLED) go build -ldflags "-s -w \ - -X github.com/steveiliop56/tinyauth/internal/config.Version=${TAG_NAME} \ - -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \ - -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" \ + -X github.com/tinyauthapp/tinyauth/internal/config.Version=${TAG_NAME} \ + -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \ + -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" \ -o ${BIN_NAME} ./cmd/tinyauth # Build for amd64 diff --git a/README.md b/README.md index ad607f4bb..2546d3576 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@
- License - Release - Issues - Tinyauth CI + License + Release + Issues + Tinyauth CI
@@ -39,7 +39,7 @@ If you are still not sure if Tinyauth suits your needs you can try out the [demo You can find documentation and guides on all of the available configuration of Tinyauth in the [website](https://tinyauth.app). -If you wish to contribute to the documentation head over to the [repository](https://github.com/steveiliop56/tinyauth-docs). +If you wish to contribute to the documentation head over to the [repository](https://github.com/tinyauthapp/tinyauth-docs). ## Discord @@ -47,7 +47,7 @@ Tinyauth has a [Discord](https://discord.gg/eHzVaCzRRd) server. Feel free to hop ## Contributing -All contributions to the codebase are welcome! If you have any free time, feel free to pick up an [issue](https://github.com/steveiliop56/tinyauth/issues) or add your own missing features. Make sure to check out the [contributing guide](./CONTRIBUTING.md) for instructions on how to get the development server up and running. +All contributions to the codebase are welcome! If you have any free time, feel free to pick up an [issue](https://github.com/tinyauthapp/tinyauth/issues) or add your own missing features. Make sure to check out the [contributing guide](./CONTRIBUTING.md) for instructions on how to get the development server up and running. ## Localization @@ -72,4 +72,4 @@ A big thank you to the following people for providing me with more coffee: ## Star History -[![Star History Chart](https://api.star-history.com/svg?repos=steveiliop56/tinyauth&type=Date)](https://www.star-history.com/#steveiliop56/tinyauth&Date) +[![Star History Chart](https://api.star-history.com/svg?repos=tinyauthapp/tinyauth&type=Date)](https://www.star-history.com/#tinyauthapp/tinyauth&Date) diff --git a/SECURITY.md b/SECURITY.md index cf46677b2..f6da0f5d9 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,7 +2,7 @@ ## Supported Versions -It is recommended to use the [latest](https://github.com/steveiliop56/tinyauth/releases/latest) available version of tinyauth. This is because it includes security fixes, new features and dependency updates. Older versions, especially major ones, are not supported and won't receive security or patch updates. +It is recommended to use the [latest](https://github.com/tinyauthapp/tinyauth/releases/latest) available version of tinyauth. This is because it includes security fixes, new features and dependency updates. Older versions, especially major ones, are not supported and won't receive security or patch updates. ## Reporting a Vulnerability diff --git a/assets/discohook.json b/assets/discohook.json index fb8c4cdd8..725edfc05 100644 --- a/assets/discohook.json +++ b/assets/discohook.json @@ -3,7 +3,7 @@ "embeds": [ { "title": "Welcome to Tinyauth Discord!", - "description": "Tinyauth is a simple authentication middleware that adds a simple login screen or OAuth with Google, Github and any provider to all of your docker apps. It supports all the popular proxies like Traefik, Nginx and Caddy.\n\n**Information**\n\n• Github: \n• Website: ", + "description": "Tinyauth is a simple authentication middleware that adds a simple login screen or OAuth with Google, Github and any provider to all of your docker apps. It supports all the popular proxies like Traefik, Nginx and Caddy.\n\n**Information**\n\n• Github: \n• Website: ", "url": "https://tinyauth.app", "color": 7002085, "author": { @@ -14,9 +14,9 @@ }, "timestamp": "2025-06-06T12:25:27.629Z", "thumbnail": { - "url": "https://github.com/steveiliop56/tinyauth/blob/main/assets/logo.png?raw=true" + "url": "https://github.com/tinyauthapp/tinyauth/blob/main/assets/logo.png?raw=true" } } ], "attachments": [] -} \ No newline at end of file +} diff --git a/docker-compose.example.yml b/docker-compose.example.yml index e33dc70ec..6d8161450 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -15,7 +15,7 @@ services: traefik.http.routers.whoami.middlewares: tinyauth tinyauth: - image: ghcr.io/steveiliop56/tinyauth:v5 + image: ghcr.io/tinyauthapp/tinyauth:v5 environment: - TINYAUTH_APPURL=https://tinyauth.example.com - TINYAUTH_AUTH_USERS=user:$$2a$$10$$UdLYoJ5lgPsC0RKqYH/jMua7zIn0g9kPqWmhYayJYLaZQ/FTmH2/u # user:password From 5e520b6f6803ac005a0dc20f697b10f0db3444d5 Mon Sep 17 00:00:00 2001 From: Ryc O'Chet Date: Sun, 12 Apr 2026 21:51:28 +0100 Subject: [PATCH 2/6] code --- cmd/tinyauth/create_oidc_client.go | 2 +- cmd/tinyauth/create_user.go | 2 +- cmd/tinyauth/generate_totp.go | 4 ++-- cmd/tinyauth/healthcheck.go | 2 +- cmd/tinyauth/tinyauth.go | 8 ++++---- cmd/tinyauth/verify_user.go | 4 ++-- cmd/tinyauth/version.go | 2 +- gen/gen_env.go | 2 +- gen/gen_md.go | 2 +- go.mod | 2 +- internal/bootstrap/app_bootstrap.go | 10 +++++----- internal/bootstrap/db_bootstrap.go | 2 +- internal/bootstrap/router_bootstrap.go | 6 +++--- internal/bootstrap/service_bootstrap.go | 6 +++--- internal/controller/context_controller.go | 4 ++-- internal/controller/context_controller_test.go | 8 ++++---- internal/controller/health_controller_test.go | 4 ++-- internal/controller/oauth_controller.go | 10 +++++----- internal/controller/oidc_controller.go | 6 +++--- internal/controller/oidc_controller_test.go | 12 ++++++------ internal/controller/proxy_controller.go | 8 ++++---- internal/controller/proxy_controller_test.go | 12 ++++++------ internal/controller/resources_controller_test.go | 4 ++-- internal/controller/user_controller.go | 8 ++++---- internal/controller/user_controller_test.go | 12 ++++++------ internal/controller/well_known_controller.go | 2 +- internal/controller/well_known_controller_test.go | 12 ++++++------ internal/middleware/context_middleware.go | 8 ++++---- internal/middleware/ui_middleware.go | 4 ++-- internal/middleware/zerolog_middleware.go | 2 +- internal/service/access_controls_service.go | 4 ++-- internal/service/auth_service.go | 8 ++++---- internal/service/docker_service.go | 6 +++--- internal/service/ldap_service.go | 2 +- internal/service/oauth_broker_service.go | 4 ++-- internal/service/oauth_extractors.go | 2 +- internal/service/oauth_presets.go | 2 +- internal/service/oauth_service.go | 2 +- internal/service/oidc_service.go | 8 ++++---- internal/utils/app_utils.go | 4 ++-- internal/utils/app_utils_test.go | 4 ++-- internal/utils/decoders/label_decoder_test.go | 4 ++-- internal/utils/label_utils_test.go | 2 +- internal/utils/loaders/loader_env.go | 2 +- internal/utils/security_utils_test.go | 2 +- internal/utils/string_utils_test.go | 2 +- internal/utils/tlog/log_wrapper.go | 2 +- internal/utils/tlog/log_wrapper_test.go | 4 ++-- internal/utils/user_utils.go | 2 +- internal/utils/user_utils_test.go | 2 +- 50 files changed, 119 insertions(+), 119 deletions(-) diff --git a/cmd/tinyauth/create_oidc_client.go b/cmd/tinyauth/create_oidc_client.go index 75abe804c..3a7cb1e2f 100644 --- a/cmd/tinyauth/create_oidc_client.go +++ b/cmd/tinyauth/create_oidc_client.go @@ -7,7 +7,7 @@ import ( "strings" "github.com/google/uuid" - "github.com/steveiliop56/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils" "github.com/tinyauthapp/paerser/cli" ) diff --git a/cmd/tinyauth/create_user.go b/cmd/tinyauth/create_user.go index 2e6ce6efd..ef5fe2664 100644 --- a/cmd/tinyauth/create_user.go +++ b/cmd/tinyauth/create_user.go @@ -6,7 +6,7 @@ import ( "strings" "charm.land/huh/v2" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/tinyauthapp/paerser/cli" "golang.org/x/crypto/bcrypt" ) diff --git a/cmd/tinyauth/generate_totp.go b/cmd/tinyauth/generate_totp.go index 8318f8de8..22102c150 100644 --- a/cmd/tinyauth/generate_totp.go +++ b/cmd/tinyauth/generate_totp.go @@ -6,8 +6,8 @@ import ( "os" "strings" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "charm.land/huh/v2" "github.com/mdp/qrterminal/v3" diff --git a/cmd/tinyauth/healthcheck.go b/cmd/tinyauth/healthcheck.go index dc3df7201..649a68c71 100644 --- a/cmd/tinyauth/healthcheck.go +++ b/cmd/tinyauth/healthcheck.go @@ -9,7 +9,7 @@ import ( "os" "time" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/tinyauthapp/paerser/cli" ) diff --git a/cmd/tinyauth/tinyauth.go b/cmd/tinyauth/tinyauth.go index e0122f294..cc7c72618 100644 --- a/cmd/tinyauth/tinyauth.go +++ b/cmd/tinyauth/tinyauth.go @@ -4,10 +4,10 @@ import ( "fmt" "charm.land/huh/v2" - "github.com/steveiliop56/tinyauth/internal/bootstrap" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils/loaders" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/bootstrap" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils/loaders" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/rs/zerolog/log" "github.com/tinyauthapp/paerser/cli" diff --git a/cmd/tinyauth/verify_user.go b/cmd/tinyauth/verify_user.go index 0f3ed5b1b..5ab7aeee2 100644 --- a/cmd/tinyauth/verify_user.go +++ b/cmd/tinyauth/verify_user.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "charm.land/huh/v2" "github.com/pquerna/otp/totp" diff --git a/cmd/tinyauth/version.go b/cmd/tinyauth/version.go index d0e7709ed..5bd2d9ac2 100644 --- a/cmd/tinyauth/version.go +++ b/cmd/tinyauth/version.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" "github.com/tinyauthapp/paerser/cli" ) diff --git a/gen/gen_env.go b/gen/gen_env.go index d1a9b234b..881888a9d 100644 --- a/gen/gen_env.go +++ b/gen/gen_env.go @@ -10,7 +10,7 @@ import ( "reflect" "strings" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" ) type EnvEntry struct { diff --git a/gen/gen_md.go b/gen/gen_md.go index fa8025edf..ae8f0f19a 100644 --- a/gen/gen_md.go +++ b/gen/gen_md.go @@ -10,7 +10,7 @@ import ( "reflect" "strings" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" ) type MarkdownEntry struct { diff --git a/go.mod b/go.mod index b8e439dd2..9aed07d16 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/steveiliop56/tinyauth +module github.com/tinyauthapp/tinyauth go 1.26.0 diff --git a/internal/bootstrap/app_bootstrap.go b/internal/bootstrap/app_bootstrap.go index 12e4f7fba..96719a488 100644 --- a/internal/bootstrap/app_bootstrap.go +++ b/internal/bootstrap/app_bootstrap.go @@ -12,11 +12,11 @@ import ( "strings" "time" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" ) type BootstrapApp struct { diff --git a/internal/bootstrap/db_bootstrap.go b/internal/bootstrap/db_bootstrap.go index ab10daad1..3f48f793e 100644 --- a/internal/bootstrap/db_bootstrap.go +++ b/internal/bootstrap/db_bootstrap.go @@ -6,7 +6,7 @@ import ( "os" "path/filepath" - "github.com/steveiliop56/tinyauth/internal/assets" + "github.com/tinyauthapp/tinyauth/internal/assets" "github.com/golang-migrate/migrate/v4" "github.com/golang-migrate/migrate/v4/database/sqlite3" diff --git a/internal/bootstrap/router_bootstrap.go b/internal/bootstrap/router_bootstrap.go index ef92d100d..91d36ac2b 100644 --- a/internal/bootstrap/router_bootstrap.go +++ b/internal/bootstrap/router_bootstrap.go @@ -4,9 +4,9 @@ import ( "fmt" "slices" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/middleware" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/middleware" "github.com/gin-gonic/gin" ) diff --git a/internal/bootstrap/service_bootstrap.go b/internal/bootstrap/service_bootstrap.go index 7bd4a620e..9c5806b94 100644 --- a/internal/bootstrap/service_bootstrap.go +++ b/internal/bootstrap/service_bootstrap.go @@ -1,9 +1,9 @@ package bootstrap import ( - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" ) type Services struct { diff --git a/internal/controller/context_controller.go b/internal/controller/context_controller.go index 8501bce1d..da53303ba 100644 --- a/internal/controller/context_controller.go +++ b/internal/controller/context_controller.go @@ -4,8 +4,8 @@ import ( "fmt" "net/url" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" ) diff --git a/internal/controller/context_controller_test.go b/internal/controller/context_controller_test.go index 3cff31c67..2329425bf 100644 --- a/internal/controller/context_controller_test.go +++ b/internal/controller/context_controller_test.go @@ -7,10 +7,10 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/stretchr/testify/assert" ) diff --git a/internal/controller/health_controller_test.go b/internal/controller/health_controller_test.go index a12fd437a..d1bed3b6c 100644 --- a/internal/controller/health_controller_test.go +++ b/internal/controller/health_controller_test.go @@ -7,8 +7,8 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/stretchr/testify/assert" ) diff --git a/internal/controller/oauth_controller.go b/internal/controller/oauth_controller.go index aa116134c..4133b8490 100644 --- a/internal/controller/oauth_controller.go +++ b/internal/controller/oauth_controller.go @@ -6,11 +6,11 @@ import ( "strings" "time" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" "github.com/google/go-querystring/query" diff --git a/internal/controller/oidc_controller.go b/internal/controller/oidc_controller.go index 391053965..43b08203e 100644 --- a/internal/controller/oidc_controller.go +++ b/internal/controller/oidc_controller.go @@ -10,9 +10,9 @@ import ( "github.com/gin-gonic/gin" "github.com/google/go-querystring/query" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" ) type OIDCControllerConfig struct{} diff --git a/internal/controller/oidc_controller_test.go b/internal/controller/oidc_controller_test.go index 49050db86..0d2757b06 100644 --- a/internal/controller/oidc_controller_test.go +++ b/internal/controller/oidc_controller_test.go @@ -12,12 +12,12 @@ import ( "github.com/gin-gonic/gin" "github.com/google/go-querystring/query" - "github.com/steveiliop56/tinyauth/internal/bootstrap" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/bootstrap" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/internal/controller/proxy_controller.go b/internal/controller/proxy_controller.go index 9790daa9e..724c6f6f3 100644 --- a/internal/controller/proxy_controller.go +++ b/internal/controller/proxy_controller.go @@ -8,10 +8,10 @@ import ( "regexp" "strings" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" "github.com/google/go-querystring/query" diff --git a/internal/controller/proxy_controller_test.go b/internal/controller/proxy_controller_test.go index 5c07acf51..8ea81729a 100644 --- a/internal/controller/proxy_controller_test.go +++ b/internal/controller/proxy_controller_test.go @@ -6,12 +6,12 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/steveiliop56/tinyauth/internal/bootstrap" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/bootstrap" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/internal/controller/resources_controller_test.go b/internal/controller/resources_controller_test.go index 2b89aa107..a1996be30 100644 --- a/internal/controller/resources_controller_test.go +++ b/internal/controller/resources_controller_test.go @@ -7,8 +7,8 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/internal/controller/user_controller.go b/internal/controller/user_controller.go index 161a520f4..20f1184d2 100644 --- a/internal/controller/user_controller.go +++ b/internal/controller/user_controller.go @@ -4,10 +4,10 @@ import ( "fmt" "time" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" "github.com/pquerna/otp/totp" diff --git a/internal/controller/user_controller_test.go b/internal/controller/user_controller_test.go index d69f93042..1643aecb4 100644 --- a/internal/controller/user_controller_test.go +++ b/internal/controller/user_controller_test.go @@ -11,12 +11,12 @@ import ( "github.com/gin-gonic/gin" "github.com/pquerna/otp/totp" - "github.com/steveiliop56/tinyauth/internal/bootstrap" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/bootstrap" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/internal/controller/well_known_controller.go b/internal/controller/well_known_controller.go index d09de0f51..b94bd933a 100644 --- a/internal/controller/well_known_controller.go +++ b/internal/controller/well_known_controller.go @@ -5,7 +5,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "github.com/steveiliop56/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/service" ) type OpenIDConnectConfiguration struct { diff --git a/internal/controller/well_known_controller_test.go b/internal/controller/well_known_controller_test.go index 47a0e7ef7..ac1f369de 100644 --- a/internal/controller/well_known_controller_test.go +++ b/internal/controller/well_known_controller_test.go @@ -8,12 +8,12 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/steveiliop56/tinyauth/internal/bootstrap" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/controller" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/bootstrap" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/controller" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/internal/middleware/context_middleware.go b/internal/middleware/context_middleware.go index 025c64ec7..36e6a945e 100644 --- a/internal/middleware/context_middleware.go +++ b/internal/middleware/context_middleware.go @@ -4,10 +4,10 @@ import ( "strings" "time" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/service" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/service" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" ) diff --git a/internal/middleware/ui_middleware.go b/internal/middleware/ui_middleware.go index 4086d779c..be080b50f 100644 --- a/internal/middleware/ui_middleware.go +++ b/internal/middleware/ui_middleware.go @@ -8,8 +8,8 @@ import ( "strings" "time" - "github.com/steveiliop56/tinyauth/internal/assets" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/assets" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" ) diff --git a/internal/middleware/zerolog_middleware.go b/internal/middleware/zerolog_middleware.go index 635d74d5b..d75e3a728 100644 --- a/internal/middleware/zerolog_middleware.go +++ b/internal/middleware/zerolog_middleware.go @@ -5,7 +5,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" ) // See context middleware for explanation of why we have to do this diff --git a/internal/service/access_controls_service.go b/internal/service/access_controls_service.go index 087ce8830..56849de4e 100644 --- a/internal/service/access_controls_service.go +++ b/internal/service/access_controls_service.go @@ -4,8 +4,8 @@ import ( "errors" "strings" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" ) type AccessControlsService struct { diff --git a/internal/service/auth_service.go b/internal/service/auth_service.go index 807d39c56..1d0d74d36 100644 --- a/internal/service/auth_service.go +++ b/internal/service/auth_service.go @@ -10,10 +10,10 @@ import ( "sync" "time" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" "github.com/google/uuid" diff --git a/internal/service/docker_service.go b/internal/service/docker_service.go index fc96fb9de..971792427 100644 --- a/internal/service/docker_service.go +++ b/internal/service/docker_service.go @@ -4,9 +4,9 @@ import ( "context" "strings" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils/decoders" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils/decoders" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" container "github.com/docker/docker/api/types/container" "github.com/docker/docker/client" diff --git a/internal/service/ldap_service.go b/internal/service/ldap_service.go index c48127aa0..0963ebf57 100644 --- a/internal/service/ldap_service.go +++ b/internal/service/ldap_service.go @@ -9,7 +9,7 @@ import ( "github.com/cenkalti/backoff/v5" ldapgo "github.com/go-ldap/ldap/v3" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" ) type LdapServiceConfig struct { diff --git a/internal/service/oauth_broker_service.go b/internal/service/oauth_broker_service.go index 2f947138c..e67fc11c9 100644 --- a/internal/service/oauth_broker_service.go +++ b/internal/service/oauth_broker_service.go @@ -1,8 +1,8 @@ package service import ( - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "golang.org/x/exp/slices" "golang.org/x/oauth2" diff --git a/internal/service/oauth_extractors.go b/internal/service/oauth_extractors.go index 91b138777..45d03f74b 100644 --- a/internal/service/oauth_extractors.go +++ b/internal/service/oauth_extractors.go @@ -8,7 +8,7 @@ import ( "net/http" "strconv" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" ) type GithubEmailResponse []struct { diff --git a/internal/service/oauth_presets.go b/internal/service/oauth_presets.go index 477ea0e5d..df23be5e4 100644 --- a/internal/service/oauth_presets.go +++ b/internal/service/oauth_presets.go @@ -1,7 +1,7 @@ package service import ( - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" "golang.org/x/oauth2/endpoints" ) diff --git a/internal/service/oauth_service.go b/internal/service/oauth_service.go index 1e6cd51ec..4ef118ea9 100644 --- a/internal/service/oauth_service.go +++ b/internal/service/oauth_service.go @@ -6,7 +6,7 @@ import ( "net/http" "time" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" "golang.org/x/oauth2" ) diff --git a/internal/service/oidc_service.go b/internal/service/oidc_service.go index 7990ef817..7ec141f51 100644 --- a/internal/service/oidc_service.go +++ b/internal/service/oidc_service.go @@ -20,10 +20,10 @@ import ( "github.com/gin-gonic/gin" "github.com/go-jose/go-jose/v4" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/repository" - "github.com/steveiliop56/tinyauth/internal/utils" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/repository" + "github.com/tinyauthapp/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "golang.org/x/exp/slices" ) diff --git a/internal/utils/app_utils.go b/internal/utils/app_utils.go index c5055e364..55665ee08 100644 --- a/internal/utils/app_utils.go +++ b/internal/utils/app_utils.go @@ -7,8 +7,8 @@ import ( "net/url" "strings" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/gin-gonic/gin" "github.com/weppos/publicsuffix-go/publicsuffix" diff --git a/internal/utils/app_utils_test.go b/internal/utils/app_utils_test.go index 5ca545d53..a44c08d36 100644 --- a/internal/utils/app_utils_test.go +++ b/internal/utils/app_utils_test.go @@ -3,8 +3,8 @@ package utils_test import ( "testing" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils" "github.com/gin-gonic/gin" "gotest.tools/v3/assert" diff --git a/internal/utils/decoders/label_decoder_test.go b/internal/utils/decoders/label_decoder_test.go index fb63552e1..bf5d49fd2 100644 --- a/internal/utils/decoders/label_decoder_test.go +++ b/internal/utils/decoders/label_decoder_test.go @@ -3,8 +3,8 @@ package decoders_test import ( "testing" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils/decoders" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils/decoders" "gotest.tools/v3/assert" ) diff --git a/internal/utils/label_utils_test.go b/internal/utils/label_utils_test.go index 8edac7955..1d1554bb1 100644 --- a/internal/utils/label_utils_test.go +++ b/internal/utils/label_utils_test.go @@ -3,7 +3,7 @@ package utils_test import ( "testing" - "github.com/steveiliop56/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils" "gotest.tools/v3/assert" ) diff --git a/internal/utils/loaders/loader_env.go b/internal/utils/loaders/loader_env.go index 45c5b5ef1..f441dddad 100644 --- a/internal/utils/loaders/loader_env.go +++ b/internal/utils/loaders/loader_env.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" "github.com/tinyauthapp/paerser/cli" "github.com/tinyauthapp/paerser/env" diff --git a/internal/utils/security_utils_test.go b/internal/utils/security_utils_test.go index 3ebd68182..48c373351 100644 --- a/internal/utils/security_utils_test.go +++ b/internal/utils/security_utils_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/steveiliop56/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils" "gotest.tools/v3/assert" ) diff --git a/internal/utils/string_utils_test.go b/internal/utils/string_utils_test.go index b5e41f890..1db3bf17d 100644 --- a/internal/utils/string_utils_test.go +++ b/internal/utils/string_utils_test.go @@ -3,7 +3,7 @@ package utils_test import ( "testing" - "github.com/steveiliop56/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils" "gotest.tools/v3/assert" ) diff --git a/internal/utils/tlog/log_wrapper.go b/internal/utils/tlog/log_wrapper.go index 1b9c643ad..e3220e40c 100644 --- a/internal/utils/tlog/log_wrapper.go +++ b/internal/utils/tlog/log_wrapper.go @@ -7,7 +7,7 @@ import ( "github.com/rs/zerolog" "github.com/rs/zerolog/log" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" ) type Logger struct { diff --git a/internal/utils/tlog/log_wrapper_test.go b/internal/utils/tlog/log_wrapper_test.go index 1ba521c0e..2db9e2a66 100644 --- a/internal/utils/tlog/log_wrapper_test.go +++ b/internal/utils/tlog/log_wrapper_test.go @@ -5,8 +5,8 @@ import ( "encoding/json" "testing" - "github.com/steveiliop56/tinyauth/internal/config" - "github.com/steveiliop56/tinyauth/internal/utils/tlog" + "github.com/tinyauthapp/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/utils/tlog" "github.com/rs/zerolog" "gotest.tools/v3/assert" diff --git a/internal/utils/user_utils.go b/internal/utils/user_utils.go index e0254c045..c37dee36e 100644 --- a/internal/utils/user_utils.go +++ b/internal/utils/user_utils.go @@ -6,7 +6,7 @@ import ( "net/mail" "strings" - "github.com/steveiliop56/tinyauth/internal/config" + "github.com/tinyauthapp/tinyauth/internal/config" ) func ParseUsers(usersStr []string) ([]config.User, error) { diff --git a/internal/utils/user_utils_test.go b/internal/utils/user_utils_test.go index 658fbdc02..e95ae7784 100644 --- a/internal/utils/user_utils_test.go +++ b/internal/utils/user_utils_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/steveiliop56/tinyauth/internal/utils" + "github.com/tinyauthapp/tinyauth/internal/utils" "gotest.tools/v3/assert" ) From 1e6a06d6e793548d029aee74c43fadaa95093ee3 Mon Sep 17 00:00:00 2001 From: Ryc O'Chet Date: Sun, 12 Apr 2026 21:56:33 +0100 Subject: [PATCH 3/6] fix issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 3 ++- .github/ISSUE_TEMPLATE/feature_request.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 6ab66c32b..4dc8be829 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,8 @@ name: Bug report about: Create a report to help improve Tinyauth title: "[BUG]" labels: bug -assignees: tinyauthapp +assignees: + - steveiliop56 --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index e9e2b8e36..a4c9d6bdb 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,7 +3,8 @@ name: Feature request about: Suggest an idea for this project title: "[FEATURE]" labels: enhancement -assignees: tinyauthapp +assignees: + - steveiliop56 --- From b17dff609fdcaae9980f5c04e60859b156bc0fe0 Mon Sep 17 00:00:00 2001 From: Stavros Date: Sun, 26 Apr 2026 17:02:22 +0300 Subject: [PATCH 4/6] chore: fix scoreboard url --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 192e5cdd6..7f007eda7 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ Issues Tinyauth CI - - + + From 3e2220757830313abfcb6467839e5d2b18901683 Mon Sep 17 00:00:00 2001 From: Stavros Date: Sun, 26 Apr 2026 17:03:09 +0300 Subject: [PATCH 5/6] chore: remove migration warning --- internal/bootstrap/app_bootstrap.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/bootstrap/app_bootstrap.go b/internal/bootstrap/app_bootstrap.go index 4f0a28c67..dfb7e75b6 100644 --- a/internal/bootstrap/app_bootstrap.go +++ b/internal/bootstrap/app_bootstrap.go @@ -44,8 +44,6 @@ func NewBootstrapApp(config config.Config) *BootstrapApp { } func (app *BootstrapApp) Setup() error { - fmt.Println("Tinyauth is moving to an organization! All versions after v5.0.7 will be released under ghcr.io/tinyauthapp/tinyauth. Existing images will continue to work but new features and updates (including security ones) will only be released under the new image path.") - // get app url if app.config.AppURL == "" { return fmt.Errorf("app URL cannot be empty, perhaps config loading failed") From 632c300fb028f17b013997fd9f23258c71bde41e Mon Sep 17 00:00:00 2001 From: Stavros Date: Sun, 26 Apr 2026 17:12:41 +0300 Subject: [PATCH 6/6] chore: fix readme docs link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f007eda7..8367f1467 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ If you are still not sure if Tinyauth suits your needs you can try out the [demo You can find documentation and guides on all of the available configuration of Tinyauth in the [website](https://tinyauth.app). -If you wish to contribute to the documentation head over to the [repository](https://github.com/tinyauthapp/tinyauth-docs). +If you wish to contribute to the documentation head over to the [repository](https://github.com/tinyauthapp/docs). ## Discord