Changeset 0.32.0 (#206)

This commit is contained in:
2026-03-19 18:50:27 +00:00
parent 6668e546fe
commit b1266b0d7c
283 changed files with 2187 additions and 1055 deletions

View File

@@ -5,8 +5,8 @@ import (
"github.com/gin-gonic/gin"
"git.gobha.me/xcaliber/chat-switchboard/models"
"git.gobha.me/xcaliber/chat-switchboard/store"
"chat-switchboard/models"
"chat-switchboard/store"
)
type Mode string

View File

@@ -9,8 +9,8 @@ import (
"github.com/gin-gonic/gin"
"golang.org/x/crypto/bcrypt"
"git.gobha.me/xcaliber/chat-switchboard/models"
"git.gobha.me/xcaliber/chat-switchboard/store"
"chat-switchboard/models"
"chat-switchboard/store"
)
const bcryptCost = 12

View File

@@ -8,8 +8,8 @@ import (
"github.com/gin-gonic/gin"
"git.gobha.me/xcaliber/chat-switchboard/models"
"git.gobha.me/xcaliber/chat-switchboard/store"
"chat-switchboard/models"
"chat-switchboard/store"
)
// MTLSConfig holds mTLS-specific configuration.

View File

@@ -3,7 +3,7 @@ package auth
import (
"testing"
"git.gobha.me/xcaliber/chat-switchboard/store"
"chat-switchboard/store"
)
func TestParseDN(t *testing.T) {

View File

@@ -18,8 +18,8 @@ import (
"github.com/gin-gonic/gin"
"github.com/golang-jwt/jwt/v5"
"git.gobha.me/xcaliber/chat-switchboard/models"
"git.gobha.me/xcaliber/chat-switchboard/store"
"chat-switchboard/models"
"chat-switchboard/store"
)
// OIDCConfig holds OIDC-specific configuration from env vars.

View File

@@ -3,7 +3,7 @@ package auth_test
import (
"testing"
"git.gobha.me/xcaliber/chat-switchboard/auth"
"chat-switchboard/auth"
)
func TestOIDCProvider_Discovery(t *testing.T) {

View File

@@ -4,7 +4,7 @@ import (
"context"
"time"
"git.gobha.me/xcaliber/chat-switchboard/store"
"chat-switchboard/store"
)
// EveryoneGroupID is the stable ID of the implicit "Everyone" group seeded in

View File

@@ -9,9 +9,9 @@ import (
"github.com/gin-gonic/gin"
"github.com/google/uuid"
"git.gobha.me/xcaliber/chat-switchboard/config"
"git.gobha.me/xcaliber/chat-switchboard/models"
"git.gobha.me/xcaliber/chat-switchboard/store"
"chat-switchboard/config"
"chat-switchboard/models"
"chat-switchboard/store"
)
const sessionCookieName = "sb_session"