aboutsummaryrefslogtreecommitdiff
blob: 059ec149cab4efe46d5b769094cc1f32f6364470 (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.try.nick)
  end
end