smswithoutborders / SMSwithoutborders-BE

Here is the cloud API and User management services. It is directly configurable with MySQL databases for managing users. Also provides out of the box integrations of Google OAuth end-points and Account authentication
GNU General Public License v3.0
12 stars 3 forks source link

Telegram and Twitter have the same letter #33

Closed sherlockwisdom closed 2 years ago

sherlockwisdom commented 2 years ago

Telegram = t Twitter = t

sherlockwisdom commented 2 years ago

While we are at it, we can also make Telegram type = 'messaging' so that it differs from Twitter in how it sends out messages (requires recipient details)

PromiseFru commented 2 years ago

Telegram = t Twitter = t

Hello @sherlockwisdom. Thank you for pointing this out.

Platform letters are obtained from the first letter of the platform's name. That is the reason why telegram and Twitter have the same platform letters.

I think this can be solved if we used the first two letters of a platform's name

Please what are your thoughts on this

PromiseFru commented 2 years ago

@sherlockwisdom this is fixed Telegram = { "type": "messaging", "letter": "T" } Twitter = { "type": "text", "letter": "t" }

for this to take effect please drop your platforms table

sherlockwisdom commented 2 years ago

Awesome, thanks