mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
26 lines
719 B
Rust
26 lines
719 B
Rust
/*
|
|
* Author: Ruben Fiszel
|
|
* Copyright: Windmill Labs, Inc 2023
|
|
* This file and its contents are licensed under the AGPLv3 License.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-AGPL for a copy of the license.
|
|
*/
|
|
#![allow(non_snake_case)]
|
|
|
|
use axum::{routing::post, Router};
|
|
|
|
pub struct ServiceProviderExt();
|
|
|
|
pub async fn build_sp_extension() -> anyhow::Result<ServiceProviderExt> {
|
|
return Ok(ServiceProviderExt());
|
|
}
|
|
|
|
pub fn global_service() -> Router {
|
|
Router::new().route("/acs", post(acs))
|
|
}
|
|
|
|
pub async fn acs() -> String {
|
|
// Implementation is not open source as it is a Windmill Enterprise Edition feature
|
|
"SAML available only in enterprise version".to_string()
|
|
}
|