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