This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First of all, ensure farming-consumers is up and running | |
ct_attributes = FactoryBot.build(:es_concept_type).attributes | |
# in Staging you might need to do this before call Create service: | |
# transactions (sta):009> ct_attributes["uuid"] = SecureRandom.uuid | |
ES::ConceptTypes::Create.new(attributes: ct_attributes).call | |
# check concept type created consumer in Farming (devkit logs farming-consumers) | |
ct = ES::ConceptType.last |
OlderNewer