42 lines
994 B
Rust
42 lines
994 B
Rust
use std::sync::Arc;
|
|
|
|
use crate::db::ApiAuthed;
|
|
|
|
use crate::users::{EditPassword, NewUser};
|
|
use crate::{db::DB, webhook_util::WebhookShared};
|
|
use argon2::Argon2;
|
|
|
|
use http::StatusCode;
|
|
|
|
use windmill_common::error::{Error, Result};
|
|
|
|
pub async fn create_user(
|
|
_authed: ApiAuthed,
|
|
_db: DB,
|
|
_webhook: WebhookShared,
|
|
_argon2: Arc<Argon2<'_>>,
|
|
mut _nu: NewUser,
|
|
) -> Result<(StatusCode, String)> {
|
|
Err(Error::InternalErr(
|
|
"Not implemented in Windmill's Open Source repository".to_string(),
|
|
))
|
|
}
|
|
|
|
pub async fn set_password(
|
|
_db: DB,
|
|
_argon2: Arc<Argon2<'_>>,
|
|
_authed: ApiAuthed,
|
|
_user_email: &str,
|
|
_ep: EditPassword,
|
|
) -> Result<String> {
|
|
Err(Error::InternalErr(
|
|
"Not implemented in Windmill's Open Source repository".to_string(),
|
|
))
|
|
}
|
|
|
|
pub fn send_email_if_possible(_subject: &str, _content: &str, _to: &str) {
|
|
tracing::warn!(
|
|
"send_email_if_possible is not implemented in Windmill's Open Source repository"
|
|
);
|
|
}
|