Is There Any Way to Edit the Application Configuration JSON from VAF?

We need to create properties via VAF and map them into the configuration (without manual mapping). What we face difficulties with is that, cannot find a way to edit the JSON configuration that we see in Advanced tab.

I'm curious if there's a method to accomplish this.

Parents Reply
  • Sure. I appreciate your willingness to review it when you have time.

    This is the code snippet we have now for modifying MDCC - 

    var configOperations = new VaultConfigurationDomainOperations(vault);
    ConfigurationDomain mdcConfigDomain = configOperations.GetMetadataCardConfigurationDomain();
    var response = configOperations.SaveConfiguration(mdcConfigDomain, mdcConfig);

    FYI - Though it seems it's not saved, I can see the effect of the rules in M-Files Desktop client.

    Thanks.

Children