aboutsummaryrefslogtreecommitdiff
blob: cd6f8fe1372914bb68a456a8f48d227aa6396719 (plain)
1
2
3
4
5
6
7
8
9
10
11
class ProjectAcceptancesController < ApplicationController

  hobo_model_controller

  auto_actions :all, :except => [:index]
  index_action :pending_acceptances

  def pending_acceptances
    hobo_index ProjectAcceptance.accepting_nick_is(current_user.nick)
  end
end