default-validation-rules.js 385 B

123456789101112131415161718192021
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([], function () {
  6. 'use strict';
  7. return {
  8. /**
  9. * @return {Object}
  10. */
  11. getRules: function () {
  12. return {
  13. 'country_id': {
  14. 'required': true
  15. }
  16. };
  17. }
  18. };
  19. });