lemmy/crates/db_schema/src/impls/secret.rs

16 lines
405 B
Rust
Raw Normal View History

2021-10-16 13:33:38 +00:00
use crate::source::secret::Secret;
use diesel::{result::Error, *};
impl Secret {
/// Initialize the Secrets from the DB.
/// Warning: You should only call this once.
pub fn init(conn: &mut PgConnection) -> Result<Secret, Error> {
2021-10-16 13:33:38 +00:00
read_secrets(conn)
}
}
fn read_secrets(conn: &mut PgConnection) -> Result<Secret, Error> {
2021-10-16 13:33:38 +00:00
use crate::schema::secret::dsl::*;
secret.first::<Secret>(conn)
}