summaryrefslogtreecommitdiff
path: root/app/controllers/groups/application_controller.rb
blob: e0fd4befae9abd1ac7466efdfef37477983dbc84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Groups::ApplicationController < ApplicationController
  before_action :set_title

  private
  
  def authorize_read_group!
    unless @group and can?(current_user, :read_group, @group)
      if current_user.nil?
        return authenticate_user!
      else
        return render_404
      end
    end
  end
  
  def authorize_admin_group!
    unless can?(current_user, :admin_group, group)
      return render_404
    end
  end

  def set_title
    @title      = group.name
    @title_url  = group_path(group)
    @sidebar    = "group"
  end
end