fix: update paths proto files
All checks were successful
Publish / Publish Job (push) Successful in 2m28s

This commit is contained in:
Дмитрий
2026-04-10 11:01:13 +03:00
parent 91a58e2d1d
commit 12ff7f9827
2 changed files with 7 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
import { join } from "path";
export const PROTO_PATHS = {
AUTH: join(__dirname, "../../proto/auth.proto"),
LDAP_AUTH: join(__dirname, "../../proto/ldap-auth.proto"),
ACCOUNT: join(__dirname, "../../proto/account.proto"),
RBAC: join(__dirname, "../../proto/rbac.proto"),
TWOFA: join(__dirname, "../../proto/twofa.proto"),
LDAP: join(__dirname, "../../proto/ldap.proto"),
AUTH: join(__dirname, "../../proto/sso/auth.proto"),
LDAP_AUTH: join(__dirname, "../../proto/sso/ldap-auth.proto"),
ACCOUNT: join(__dirname, "../../proto/sso/account.proto"),
RBAC: join(__dirname, "../../proto/sso/rbac.proto"),
TWOFA: join(__dirname, "../../proto/sso/twofa.proto"),
LDAP: join(__dirname, "../../proto/sso/ldap.proto"),
} as const;