SPB Git forge

spb/groupe-ka

Public

Groupe KA — site du holding + KA ID (compte unique & SSO des 7 plateformes). Next.js 16, SQLite, Google & Apple login.

81commits 1branches 0releases
89.2 MBsize
maindefault branch
22 days agolast push
TypeScript 70.4% HTML 18.4% JavaScript 4% Python 3.8% CSS 3.4%

feat(sso): client Créa·Ka (crea-ka.com) au registre KA ID

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Simon-Pierre Boucher committed 1 mo ago (Aug 17, 2026) parent 2389176

1 changed file +10 −0

modified src/lib/sso.ts +10 −0
@@ -17,6 +17,11 @@ export const SSO_CLIENTS: Record<
17 17 redirectPrefixes: ["https://www.immo-ka.com/"],
18 18 secretEnv: "KA_SSO_SECRET_IMMO_KA",
19 19 },
20 + "crea-ka": {
21 + label: "Créa·Ka",
22 + redirectPrefixes: ["https://www.crea-ka.com/", "http://localhost:8160/"],
23 + secretEnv: "KA_SSO_SECRET_CREA_KA",
24 + },
20 25 "vrai-prix": {
21 26 label: "Vrai-Prix",
22 27 redirectPrefixes: ["https://www.vrai-prix.com/"],
@@ -52,6 +57,11 @@ export const SSO_CLIENTS: Record<
52 57 redirectPrefixes: ["https://www.toit-ka.com/", "http://localhost:8097/"],
53 58 secretEnv: "KA_SSO_SECRET_TOIT_KA",
54 59 },
60 + "sorti-ka": {
61 + label: "Sorti·Ka",
62 + redirectPrefixes: ["https://www.sorti-ka.com/", "http://localhost:8120/"],
63 + secretEnv: "KA_SSO_SECRET_SORTI_KA",
64 + },
55 65 };
56 66
57 67 /**
58 68