Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels