14 lines
201 B
Ruby
14 lines
201 B
Ruby
class Admin::Settings::MapTabComponent < ApplicationComponent
|
|
def tab
|
|
"#tab-map-configuration"
|
|
end
|
|
|
|
def settings
|
|
%w[
|
|
map.latitude
|
|
map.longitude
|
|
map.zoom
|
|
]
|
|
end
|
|
end
|