Issue when adding roles to sn_communities.disable_terms_conditions_roleDescriptionCustomer want to disable pop up to accept T&C before accessing communityResolutionOut of box, widgets "Communities T&C Blocker" and "Terms and conditions" are responsible for creating a community profile record and adding 'sn_communities.community_user' role to the sys_user record. Apart from this, it will populate the `accepted_tc`, `accepted_tc_date`, and `accepted_tc_on` fields on the newly created community profile record.The property that we have used here (`sn_communities.disable_terms_conditions_role`) will be used to disable the Terms & Condition popup during initial login (to community) and redirect the user to the Community Home page. Which means this property will be used to skip the creation of community profile record, skip granting community user role action, and accepting terms and conditions.If you want to skip the T&C dialog for all the snc_external users. To achieve this requirement with the above property, you have to create all the necessary prerequisites upfront.Generally, we will have two types of snc_external users1) self-registered users: By default, we will not see T&C popup for these users as the user accepts them during their sign-up.2) Platform users with role snc_external:>>>> Whenever a platform user with the role `snc_external` is being switched to the `community` portal then we will run into this issue. As the observed behavior is an Out of box behavior we can achieve the requirement through the following customization.A) Create a community profile record and live_profile record upfront, before the user switching to the Community portalB) Grant the role `sn_communities.community_user` to userC) Update fields `accepted_tc`, `accepted_tc_date`, and `accepted_tc_on` fields on community profile record.