- Phase 25.4: N shortcut for new exploration on dashboard (react-hotkeys-hook) - Phase 25.5: overflow-x-auto on tables, responsive padding (p-4 md:p-6) - Phase 26: SAML/OIDC/LDAP providers (build-fixed), TOTP/MFA service - Phase 26: KyselySSOConfigRepository + KyselyTOTPRepository - Phase 26: SSO HTTP controller (config CRUD + MFA setup/verify/disable) - Phase 26: Audit module index.ts + SSO module index.ts - Phase 26: Session management endpoints (findByUserId, deleteById, list/revoke) - Phase 26: SSO and audit routes feature-gated (auth:sso, audit:logs) - Phase 26: Frontend SSOSection (SAML/OIDC/LDAP config + TOTP setup) - Phase 26: Frontend SessionsSection (list/revoke active sessions) - Phase 26: Settings navigation updated with SSO & Sessions sections Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
855 B
JavaScript
22 lines
855 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.SSOConfig = void 0;
|
|
const Entity_1 = require("../../../../shared/domain/Entity");
|
|
const UniqueId_1 = require("../../../../shared/domain/UniqueId");
|
|
class SSOConfig extends Entity_1.Entity {
|
|
static create(props, id) {
|
|
return new SSOConfig(props, id ?? UniqueId_1.UniqueId.create());
|
|
}
|
|
static reconstitute(props, id) {
|
|
return new SSOConfig(props, id);
|
|
}
|
|
get organizationId() { return this.props.organizationId; }
|
|
get provider() { return this.props.provider; }
|
|
get enabled() { return this.props.enabled; }
|
|
get config() { return this.props.config; }
|
|
get createdAt() { return this.props.createdAt; }
|
|
enable() { this.props.enabled = true; }
|
|
disable() { this.props.enabled = false; }
|
|
}
|
|
exports.SSOConfig = SSOConfig;
|