I've had discussed with 20_00 about this topic, up to ECHR articles 9, 10 and 14.
I understand the POV of both of you (and the implications of the platform itself), but I'm still interested in the 20_00's view on the subject.
While the proposed solution ([x] ignore users ban-list in the community) requires careful examination for a viability, there is one more obstacle in deploying it: the code.
Can someone familiar with the posting/commenting code evaluate the amount of work to enable such functionality?
Mockup pseudo-code:
comment_posting_action: {
# other checks
if (community_ignore_users_ban_list) {
allow_post == true
}
# other checks
}
Re: Issue 2329
I understand the POV of both of you (and the implications of the platform itself), but I'm still interested in the
While the proposed solution ([x] ignore users ban-list in the community) requires careful examination for a viability, there is one more obstacle in deploying it: the code.
Can someone familiar with the posting/commenting code evaluate the amount of work to enable such functionality?
Mockup pseudo-code:
comment_posting_action: { # other checks if (community_ignore_users_ban_list) { allow_post == true } # other checks }