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

12 lines
284 B
Ruby

# frozen_string_literal: true
class Clover
hash_branch(:project_prefix, "location") do |r|
r.on String do |location_display_name|
@location = LocationNameConverter.to_internal_name(location_display_name)
r.hash_branches(:project_location_prefix)
end
end
end