mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-08 09:24:17 +00:00
Change config pictrs key name (#2360)
This commit is contained in:
parent
d0a3d99636
commit
16fe149a6d
|
@ -73,7 +73,7 @@
|
|||
debug: false
|
||||
}
|
||||
# Pictrs image server configuration.
|
||||
pictrs_config: {
|
||||
pictrs: {
|
||||
# Address where pictrs is available (for image hosting)
|
||||
url: "http://pictrs:8080/"
|
||||
# Set a custom pictrs API key. ( Required for deleting images )
|
||||
|
|
|
@ -101,7 +101,7 @@ impl Settings {
|
|||
|
||||
pub fn pictrs_config(&self) -> Result<PictrsConfig, LemmyError> {
|
||||
self
|
||||
.pictrs_config
|
||||
.pictrs
|
||||
.to_owned()
|
||||
.ok_or_else(|| anyhow!("images_disabled").into())
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ pub struct Settings {
|
|||
pub federation: FederationConfig,
|
||||
/// Pictrs image server configuration.
|
||||
#[default(Some(Default::default()))]
|
||||
pub(crate) pictrs_config: Option<PictrsConfig>,
|
||||
pub(crate) pictrs: Option<PictrsConfig>,
|
||||
#[default(Default::default())]
|
||||
pub captcha: CaptchaConfig,
|
||||
/// Email sending configuration. All options except login/password are mandatory
|
||||
|
@ -61,7 +61,7 @@ pub struct Settings {
|
|||
pub struct PictrsConfig {
|
||||
/// Address where pictrs is available (for image hosting)
|
||||
#[default(Url::parse("http://pictrs:8080").expect("parse pictrs url"))]
|
||||
#[doku(example = "Url::parse(\"http://pictrs:8080\").unwrap()")]
|
||||
#[doku(example = "http://pictrs:8080")]
|
||||
pub url: Url,
|
||||
|
||||
/// Set a custom pictrs API key. ( Required for deleting images )
|
||||
|
|
Loading…
Reference in a new issue