refactor: naming

This commit is contained in:
Max Hohlfeld 2025-07-13 11:20:56 +02:00
parent 73c1b987cd
commit ab648dd4f2
4 changed files with 4 additions and 4 deletions

View File

@ -41,8 +41,8 @@ pub fn init(cfg: &mut ServiceConfig) {
cfg.service(user::get_logout::get); cfg.service(user::get_logout::get);
cfg.service(user::get_login::get); cfg.service(user::get_login::get);
cfg.service(user::post_login::post); cfg.service(user::post_login::post);
cfg.service(user::get_reset::get); cfg.service(user::get_reset_password::get);
cfg.service(user::post_reset::post); cfg.service(user::post_reset_password::post);
cfg.service(user::get_profile::get); cfg.service(user::get_profile::get);
cfg.service(user::get_changepassword::get); cfg.service(user::get_changepassword::get);
cfg.service(user::post_changepassword::post); cfg.service(user::post_changepassword::post);

View File

@ -12,14 +12,14 @@ pub mod get_new;
pub mod get_overview; pub mod get_overview;
pub mod get_profile; pub mod get_profile;
pub mod get_register; pub mod get_register;
pub mod get_reset; pub mod get_reset_password;
pub mod post_changepassword; pub mod post_changepassword;
pub mod post_edit; pub mod post_edit;
pub mod post_login; pub mod post_login;
pub mod post_new; pub mod post_new;
pub mod post_register; pub mod post_register;
pub mod post_resend_registration; pub mod post_resend_registration;
pub mod post_reset; pub mod post_reset_password;
pub mod put_lock; pub mod put_lock;
pub mod put_receive_notifications; pub mod put_receive_notifications;