Files
ubicloud/routes/account.rb
2024-11-22 08:48:46 -08:00

10 lines
156 B
Ruby

# frozen_string_literal: true
class Clover
hash_branch("account") do |r|
r.get web? do
r.redirect "/account/change-password"
end
end
end