X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1779347849622ade2abf4926a2db867d69f72033..7e0fb05dd2128ea7e93ac214bca813388ceaa012:/lib/editors.rb diff --git a/lib/editors.rb b/lib/editors.rb index 101a6f80c..e1c4054f3 100644 --- a/lib/editors.rb +++ b/lib/editors.rb @@ -1,4 +1,5 @@ -module Editors - ALL_EDITORS = [ "potlatch", "potlatch2", "id", "remote" ] - RECOMMENDED_EDITORS = [ "id", "potlatch2", "remote" ] +module Editors + ALL_EDITORS = %w[potlatch potlatch2 id remote].freeze + AVAILABLE_EDITORS = %w[id remote].freeze + RECOMMENDED_EDITORS = %w[id remote].freeze end