module Profiles
Defined in:
apps/profiles/app.crapps/profiles/handlers/profile_detail_handler.cr
apps/profiles/handlers/profile_follow_handler.cr
apps/profiles/handlers/settings_update_handler.cr
apps/profiles/models/profile.cr
apps/profiles/routes.cr
apps/profiles/schemas/settings_update_schema.cr
Constant Summary
-
ROUTES =
Marten::Routing::Map.draw do path("/@<username:str>", ProfileDetailHandler, name: "profile_detail") path("/@<username:str>/follow", ProfileFollowHandler, name: "profile_follow") path("/settings", SettingsUpdateHandler, name: "settings_update") end