mirror of https://github.com/LemmyNet/lemmy.git
Return http status code 410 with apub tombstone (ref #1256)
parent
632d8f384a
commit
d300968ee8
|
@ -5,6 +5,7 @@ use lemmy_structs::blocking;
|
||||||
use lemmy_utils::{settings::Settings, LemmyError};
|
use lemmy_utils::{settings::Settings, LemmyError};
|
||||||
use lemmy_websocket::LemmyContext;
|
use lemmy_websocket::LemmyContext;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use http::StatusCode;
|
||||||
|
|
||||||
pub mod comment;
|
pub mod comment;
|
||||||
pub mod community;
|
pub mod community;
|
||||||
|
@ -28,6 +29,7 @@ where
|
||||||
{
|
{
|
||||||
HttpResponse::Gone()
|
HttpResponse::Gone()
|
||||||
.content_type(APUB_JSON_CONTENT_TYPE)
|
.content_type(APUB_JSON_CONTENT_TYPE)
|
||||||
|
.status(StatusCode::GONE)
|
||||||
.json(data)
|
.json(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue