def follow # rubocop:todo Metrics/AbcSize
    @project = Project.find(params[:id])
    if current_user.follower_of?(@project)
      current_user.remove_role 'follower', @project
      flash[:notice] = "You have stopped following the '#{@project.name}' project."