1
0

Implemented Quantity

This commit is contained in:
cryptogopher
2019-08-23 17:06:09 +02:00
parent 9a34cc0b95
commit 54ab1c60dc
18 changed files with 161 additions and 45 deletions

View File

@@ -1,2 +1,8 @@
module QuantitiesHelper
def domain_options
translations = t('.domains')
Quantity.domains.map do |k,v|
[translations[k.to_sym], k]
end
end
end