Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] - Extend functionality of custom table prefix name by adding it as a text input to advanced settings #53615

Open
Rykarix opened this issue Feb 10, 2025 · 0 comments

Comments

@Rykarix
Copy link

Rykarix commented Feb 10, 2025

Topic

Extend all connectors with 'custom' functionality to be named as users want

Relevant information

Feature request to 1. solve this issue, 2. extend functionallity to users

Allow users to modify the prefix name of all connectors in the UI like so:

yaml integration:

      components_mapping:
        - type: ComponentMappingDefinition
          field_path: ["**", "name"]
          value: "custom_{{components_values['name']}}"

to

      components_mapping:
        - type: ComponentMappingDefinition
          field_path: ["**", "name"]
          value: "custom_{{components_values['name']}}"
          custom_table_prefix_default: "custom_"

py integration:

            stream = AdsInsights(
                api=api,
                account_ids=config.account_ids,
                name=f"Custom{insight.name}",

to

            stream = AdsInsights(
                api=api,
                account_ids=config.account_ids,
                name=f"{insight.name}",
                custom_table_prefix_default="Custom"

Then allow users to change it in UI:

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants