mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-22 00:02:38 +00:00
The permissions read, save and usable-roles handlers move to windmill-ee-private; the routes stay registered and, without the enterprise edition, answer that data table roles are an Enterprise Edition feature. ensure_governs_datatable and ensure_reaches_datatable keep their paths: the first refuses, the second passes a data table not under roles. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BjfMkJyKzodxkobqGZ6Lqb
17 lines
417 B
Rust
17 lines
417 B
Rust
#[cfg(feature = "parquet")]
|
|
pub mod ai_session_backups;
|
|
pub mod data_metrics;
|
|
pub mod datatable_migrations;
|
|
pub mod datatable_permissions;
|
|
pub mod datatable_permissions_oss;
|
|
pub mod deployment_requests;
|
|
pub mod workspaces;
|
|
pub mod workspaces_extra;
|
|
pub mod workspaces_oss;
|
|
|
|
#[cfg(feature = "private")]
|
|
pub mod workspaces_ee;
|
|
|
|
#[cfg(all(feature = "private", feature = "enterprise"))]
|
|
pub mod datatable_permissions_ee;
|