Add comment

This commit is contained in:
Martin Lensment 2014-06-30 14:46:45 +03:00
parent 9c08edeb36
commit e99c5d7ef5
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ class Domain < ActiveRecord::Base
end
if Domain.find_by(name: x)
res << {name: x, avail: 0, reason: 'in use'}
res << {name: x, avail: 0, reason: 'in use'} #confirm reason with current API
else
res << {name: x, avail: 1}
end