We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently we store "github" and "twitter", "website" on the space settings with their own field like this
{ twitter: 'abc', github: 'def', website: 'https://', ... }
When adding new social link we always need to update the space settings structure, we should instead have a generic way to store attributes like this:
{ attributes: [ { id: 'twitter', value: 'abc' }, { id: 'github', value: 'def' }, { id: 'website', value: 'https://' } ] ... }
and use that to store Twitter GitHub and others that we want to add on the way like Discord Telegram CoinGecko.
Before
The text was updated successfully, but these errors were encountered:
Hey @bonustrack, still valid? Could be potentially part of the cooldown.
Sorry, something went wrong.
No branches or pull requests
Currently we store "github" and "twitter", "website" on the space settings with their own field like this
When adding new social link we always need to update the space settings structure, we should instead have a generic way to store attributes like this:
and use that to store Twitter GitHub and others that we want to add on the way like Discord Telegram CoinGecko.
Before
The text was updated successfully, but these errors were encountered: