mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-12 05:54:51 +00:00
Moving to api-v4 routes.
This commit is contained in:
parent
a4de41ddae
commit
5d2b6115f5
|
@ -304,9 +304,6 @@ pub fn config(cfg: &mut ServiceConfig, rate_limit: &RateLimitCell) {
|
|||
scope("/user")
|
||||
.wrap(rate_limit.message())
|
||||
.route("", get().to(read_person))
|
||||
.route("/content", get().to(list_person_content))
|
||||
// TODO move this to /account/saved after http routes
|
||||
.route("/saved", get().to(list_person_saved))
|
||||
.route("/mention", get().to(list_mentions))
|
||||
.route(
|
||||
"/mention/mark_as_read",
|
||||
|
|
|
@ -282,7 +282,8 @@ pub fn config(cfg: &mut ServiceConfig, rate_limit: &RateLimitCell) {
|
|||
.route("/change_password", put().to(change_password))
|
||||
.route("/totp/generate", post().to(generate_totp_secret))
|
||||
.route("/totp/update", post().to(update_totp))
|
||||
.route("/verify_email", post().to(verify_email)),
|
||||
.route("/verify_email", post().to(verify_email))
|
||||
.route("/saved", get().to(list_person_saved)),
|
||||
)
|
||||
.route("/account/settings/save", put().to(save_user_settings))
|
||||
.service(
|
||||
|
@ -318,7 +319,11 @@ pub fn config(cfg: &mut ServiceConfig, rate_limit: &RateLimitCell) {
|
|||
),
|
||||
)
|
||||
// User actions
|
||||
.route("/person", get().to(read_person))
|
||||
.service(
|
||||
scope("/person")
|
||||
.route("", get().to(read_person))
|
||||
.route("/content", get().to(list_person_content)),
|
||||
)
|
||||
// Admin Actions
|
||||
.service(
|
||||
scope("/admin")
|
||||
|
|
Loading…
Reference in a new issue