Sha256: 077f042416a829d38ace3ab26765c87c46f51bc16c615387620a4c75257094f3

Contents?: true

Size: 659 Bytes

Versions: 7

Compression:

Stored size: 659 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Service
    module Plugins
      module HasJSendResult
        module Constants
          SUCCESS_STATUS = :success
          FAILURE_STATUS = :failure
          ERROR_STATUS = :error

          DEFAULT_SUCCESS_DATA = {}
          DEFAULT_FAILURE_DATA = {}
          DEFAULT_ERROR_DATA = {}

          DEFAULT_SUCCESS_MESSAGE = ""
          DEFAULT_FAILURE_MESSAGE = ""
          DEFAULT_ERROR_MESSAGE = ""

          DEFAULT_SUCCESS_CODE = :default_success
          DEFAULT_FAILURE_CODE = :default_failure
          DEFAULT_ERROR_CODE = :default_error
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
convenient_service-0.19.1 lib/convenient_service/service/plugins/has_j_send_result/constants.rb
convenient_service-0.19.0 lib/convenient_service/service/plugins/has_j_send_result/constants.rb
convenient_service-0.18.0 lib/convenient_service/service/plugins/has_j_send_result/constants.rb
convenient_service-0.17.0 lib/convenient_service/service/plugins/has_j_send_result/constants.rb
convenient_service-0.16.0 lib/convenient_service/service/plugins/has_j_send_result/constants.rb
convenient_service-0.15.0 lib/convenient_service/service/plugins/has_j_send_result/constants.rb
convenient_service-0.14.0 lib/convenient_service/service/plugins/has_j_send_result/constants.rb