This will whitelist mastodon.online url, so users from the mastodon.online instance can link their profile within their dev.to profile page.
72 lines
1.4 KiB
Ruby
72 lines
1.4 KiB
Ruby
module Constants
|
|
ALLOWED_MASTODON_INSTANCES = [
|
|
"101010.pl",
|
|
"4estate.media",
|
|
"acg.mn",
|
|
"anarchism.space",
|
|
"bitcoinhackers.org",
|
|
"bsd.network",
|
|
"chaos.social",
|
|
"cmx.im",
|
|
"cybre.space",
|
|
"fosstodon.org",
|
|
"framapiaf.org",
|
|
"friends.nico",
|
|
"functional.cafe",
|
|
"hackers.town",
|
|
"hearthtodon.com",
|
|
"hex.bz",
|
|
"horiedon.com",
|
|
"hostux.social",
|
|
"imastodon.net",
|
|
"infosec.exchange",
|
|
"kirakiratter.com",
|
|
"knzk.me",
|
|
"linuxrocks.online",
|
|
"lou.lt",
|
|
"mamot.fr",
|
|
"mao.daizhige.org",
|
|
"mastodon.art",
|
|
"mastodon.at",
|
|
"mastodon.blue",
|
|
"mastodon.cloud",
|
|
"mastodon.gamedev.place",
|
|
"mastodon.host",
|
|
"mastodon.online",
|
|
"mastodon.sdf.org",
|
|
"mastodon.social",
|
|
"mastodon.technology",
|
|
"mastodon.xyz",
|
|
"mathtod.online",
|
|
"merveilles.town",
|
|
"mimumedon.com",
|
|
"misskey.xyz",
|
|
"moe.cat",
|
|
"mstdn-workers.com",
|
|
"mstdn.guru",
|
|
"mstdn.io",
|
|
"mstdn.jp",
|
|
"mstdn.tokyocameraclub.com",
|
|
"mstdn18.jp",
|
|
"music.pawoo.net",
|
|
"niu.moe",
|
|
"noagendasocial.com",
|
|
"octodon.social",
|
|
"otajodon.com",
|
|
"pawoo.net",
|
|
"phpc.social",
|
|
"qiitadon.com",
|
|
"radical.town",
|
|
"ro-mastodon.puyo.jp",
|
|
"ruby.social",
|
|
"ruhr.social",
|
|
"social.coop",
|
|
"social.targaryen.house",
|
|
"social.tchncs.de",
|
|
"switter.at",
|
|
"todon.nl",
|
|
"toot.cafe",
|
|
"wikitetas.club",
|
|
"xoxo.zone",
|
|
].freeze
|
|
end
|