[Glitch] Change silences to always require approval on follow
Port front-end changes from 18b451c0e6cf6a927a22084f94b423982de0ee8b to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
		
							parent
							
								
									0349c4d1cf
								
							
						
					
					
						commit
						8a63d659ac
					
				@ -104,17 +104,15 @@ const NAVIGATION_PANEL_BREAKPOINT = 600 + (285 * 2) + (10 * 2);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  componentDidMount () {
 | 
			
		||||
    const { myAccount, fetchFollowRequests, multiColumn } = this.props;
 | 
			
		||||
    const { fetchFollowRequests, multiColumn } = this.props;
 | 
			
		||||
 | 
			
		||||
    if (!multiColumn && window.innerWidth >= NAVIGATION_PANEL_BREAKPOINT) {
 | 
			
		||||
      this.context.router.history.replace('/timelines/home');
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (myAccount.get('locked')) {
 | 
			
		||||
    fetchFollowRequests();
 | 
			
		||||
  }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  render () {
 | 
			
		||||
    const { intl, myAccount, columns, multiColumn, unreadFollowRequests, unreadNotifications, lists, openSettings } = this.props;
 | 
			
		||||
@ -148,7 +146,7 @@ const NAVIGATION_PANEL_BREAKPOINT = 600 + (285 * 2) + (10 * 2);
 | 
			
		||||
      navItems.push(<ColumnLink key='5' icon='bookmark' text={intl.formatMessage(messages.bookmarks)} to='/bookmarks' />);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (myAccount.get('locked')) {
 | 
			
		||||
    if (myAccount.get('locked') || unreadFollowRequests > 0) {
 | 
			
		||||
      navItems.push(<ColumnLink key='6' icon='user-plus' text={intl.formatMessage(messages.follow_requests)} badge={badgeDisplay(unreadFollowRequests, 40)} to='/follow_requests' />);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user