cci
cci
It is not available even on wsl 
try like this ```rust async fn save(&self, transaction : &DatabaseTransaction, customer: Customer) -> AppResult { // 转po let user = (po::user::ActiveModel { user_id: Set(Uuid::new_v4()), username: Set(customer.username().to_owned()), email: Set(customer.email().to_owned()), password: Set(password::hash(customer.password().to_string()).await?),...
I want to use it to modify application profiles at run time
> There's example code showing the calls in the Kanidm tests where the introspection endpoint takes basic auth here: https://github.com/kanidm/kanidm/blob/master/server/testkit/tests/testkit/oauth2_test.rs#L378下面的示例代码显示了Kanidm测试中的调用,其中内省端点在这里接受基本验证:https://github.com/kanidm/kanidm/blob/master/server/testkit/tests/testkit/oauth2_test.rs#L378 > > The revocation endpoint is similar, as documented in...