function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Lewis HowelLewis Howel 

specific chatter group in feed

Hi all, I have below code for lightning component I am showing on home page in LEX. I want to make the feed only for posts from a specific broadcast chatter group, can anyone advise what i need to put in place of HELP to acheive this?

<aura:component description="Updates"
                implements="flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes" 
                access="global" >
    <aura:attribute name="headerTitle" type="Aura.Component[]">
        <h2>
            <b>Latest Updates to Salesforce (0)</b>
        </h2>
    </aura:attribute>
<lightning:card class="slds-text-heading_small"
                title="{!v.headerTitle}" 
                iconName="utility:broadcast">
        <aura:set attribute="actions">
            
        </aura:set>
        
        </lightning:card>
<forceChatter:feed type="groups"
                   HELP="0F93N0000004D4NSAU"/>
</aura:component>