some-new-replacements

This commit is contained in:
tonyrewin 2022-10-18 22:10:18 +03:00
parent 25267fa5b0
commit 504d847102
2 changed files with 6 additions and 2 deletions

View File

@ -202,6 +202,7 @@
"eduard-limonov": "eduard-limonov", "eduard-limonov": "eduard-limonov",
"education": "education", "education": "education",
"egor-letov": "egor-letov", "egor-letov": "egor-letov",
"ekspat": "expat",
"eksperiment": "experiments", "eksperiment": "experiments",
"eksperimentalnaya-muzyka": "experimental-music", "eksperimentalnaya-muzyka": "experimental-music",
"ekspressionizm": "expressionism", "ekspressionizm": "expressionism",
@ -542,6 +543,7 @@
"pomosch": "help", "pomosch": "help",
"pop-art": "pop-art", "pop-art": "pop-art",
"pop-culture": "pop-culture", "pop-culture": "pop-culture",
"populyarnaya-psihologiya": "popular-psychology",
"pornografiya": "pornography", "pornografiya": "pornography",
"portret": "portrait", "portret": "portrait",
"poslovitsy": "proverbs", "poslovitsy": "proverbs",
@ -634,11 +636,13 @@
"second-world-war": "second-world-war", "second-world-war": "second-world-war",
"sekond-hend": "second-hand", "sekond-hend": "second-hand",
"seksprosvet": "sex-education", "seksprosvet": "sex-education",
"seksualizirovannoe-nasilie": "sexualized-violence",
"seksualnoe-nasilie": "sexual-violence", "seksualnoe-nasilie": "sexual-violence",
"sekty": "sects", "sekty": "sects",
"semi": "semi", "semi": "semi",
"semiotics": "semiotics", "semiotics": "semiotics",
"serbiya": "serbia", "serbiya": "serbia",
"sergey-bodrov-mladshiy": "sergey-bodrov-junior",
"sergey-solov-v": "sergey-solovyov", "sergey-solov-v": "sergey-solovyov",
"serialy": "series", "serialy": "series",
"sever": "north", "sever": "north",
@ -659,13 +663,13 @@
"social": "society", "social": "society",
"society": "society", "society": "society",
"sociology": "sociology", "sociology": "sociology",
"sotsiologiya-1": "sociology",
"sofya-paleolog": "sofya-paleolog", "sofya-paleolog": "sofya-paleolog",
"sofya-vitovtovna": "sofya-vitovtovna", "sofya-vitovtovna": "sofya-vitovtovna",
"soobschestva": "communities", "soobschestva": "communities",
"soprotivlenie": "resistence", "soprotivlenie": "resistence",
"sotsializm": "socialism", "sotsializm": "socialism",
"sotsialnaya-filosofiya": "social-philosophy", "sotsialnaya-filosofiya": "social-philosophy",
"sotsiologiya-1": "sociology",
"sotsseti": "social-networks", "sotsseti": "social-networks",
"sotvorenie-tretego-rima": "third-rome", "sotvorenie-tretego-rima": "third-rome",
"sovremennost": "modernity", "sovremennost": "modernity",

View File

@ -22,7 +22,7 @@ async def get_user_subscriptions(slug):
"unread": await get_unread_counter(slug), # unread inbox messages counter "unread": await get_unread_counter(slug), # unread inbox messages counter
"topics": [t.slug for t in get_followed_topics(0, slug)], # followed topics slugs "topics": [t.slug for t in get_followed_topics(0, slug)], # followed topics slugs
"authors": [a.slug for a in get_followed_authors(0, slug)], # followed authors slugs "authors": [a.slug for a in get_followed_authors(0, slug)], # followed authors slugs
"reactions": [r.shout for r in get_reactions_for_shouts(0, [slug, ])], # followed reacted shouts slugs "reactions": [r.shout for r in get_reactions_for_shouts(0, [slug, ])], # followed reacted shout
"communities": [c.slug for c in get_followed_communities(0, slug)], # followed communities slugs "communities": [c.slug for c in get_followed_communities(0, slug)], # followed communities slugs
} }