From ea1f71ca3e643e67396ee55a0f648c219d562423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Mon, 24 Dec 2018 21:18:40 -0500 Subject: [PATCH] Set permissions to allow unauthenticated anonymous visitors to comment and logged-in authenticated users to edit their comments and skip approval when posting, as well as post in the first place. But the comment form still isn't showing up... Ref #32 --- config/sync/user.role.anonymous.yml | 1 + config/sync/user.role.authenticated.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/config/sync/user.role.anonymous.yml b/config/sync/user.role.anonymous.yml index f2898f9..d5384b0 100644 --- a/config/sync/user.role.anonymous.yml +++ b/config/sync/user.role.anonymous.yml @@ -13,5 +13,6 @@ permissions: - 'access comments' - 'access content' - 'access site-wide contact form' + - 'post comments' - 'use exclude node title' - 'use text format restricted_html' diff --git a/config/sync/user.role.authenticated.yml b/config/sync/user.role.authenticated.yml index a225c30..31150ec 100644 --- a/config/sync/user.role.authenticated.yml +++ b/config/sync/user.role.authenticated.yml @@ -16,6 +16,8 @@ permissions: - 'access site-wide contact form' - 'cancel account' - 'change own username' + - 'edit own comments' - 'post comments' + - 'skip comment approval' - 'use exclude node title' - 'use text format basic_html'