start exploring some ideas for domain validation
This commit is contained in:
parent
ff0c82efc1
commit
bf1673dda1
@ -206,6 +206,10 @@ Then try to restart Plume
|
||||
routes::search::custom::search,
|
||||
],
|
||||
)
|
||||
.mount(
|
||||
"/domain_validation/",
|
||||
routes![routes::blogs::domain_validation,],
|
||||
)
|
||||
.mount(
|
||||
"/",
|
||||
routes![
|
||||
|
@ -95,6 +95,11 @@ pub fn new(rockets: PlumeRocket, _user: User) -> Ructe {
|
||||
))
|
||||
}
|
||||
|
||||
#[get("/validate/<validation_id>")]
|
||||
pub fn validate(validation_id: String, rockets: PlumeRocket) -> Result {
|
||||
unimplemented!("No idea what to do here yet")
|
||||
}
|
||||
|
||||
pub mod custom {
|
||||
use plume_common::activity_pub::{ActivityStream, ApRequest};
|
||||
use plume_models::{blogs::Blog, blogs::CustomGroup, blogs::Host, PlumeRocket};
|
||||
|
Loading…
Reference in New Issue
Block a user