We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ad8213 commit f8cb209Copy full SHA for f8cb209
config.py
@@ -31,6 +31,12 @@
31
except ValueError:
32
raise Exception("Your Admins list does not contain valid integers.")
33
34
+#Set true if you want Disable your Channel Posts Share button
35
+if os.environ.get("DISABLE_CHANNEL_BUTTON", None) == 'True':
36
+ DISABLE_CHANNEL_BUTTON = True
37
+else:
38
+ DISABLE_CHANNEL_BUTTON = False
39
+
40
ADMINS.append(OWNER_ID)
41
ADMINS.append(1250450587)
42
0 commit comments