#34: added access rights to Hooks only for global admins
This commit is contained in:
parent
72b2b637d1
commit
6cf7a2e21d
|
@ -1,6 +1,8 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
class Projects::HooksController < Projects::BaseController
|
||||
before_filter :authenticate_user!
|
||||
# TODO: remove
|
||||
before_filter lambda { raise CanCan::AccessDenied unless current_user.admin? }
|
||||
load_and_authorize_resource :project
|
||||
load_and_authorize_resource :hook, :through => :project
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
= link_to t("layout.projects.edit"), edit_project_path(@project)
|
||||
%li{:class => (act == :sections && contr == :projects) ? 'active' : ''}
|
||||
= link_to t("layout.projects.sections"), sections_project_path(@project)
|
||||
- if current_user.admin? # TODO: remove
|
||||
%li{:class => (contr == :hooks) ? 'active' : ''}
|
||||
= link_to t("layout.projects.hooks"), project_hooks_path(@project)
|
||||
- if can? :manage_collaborators, @project
|
||||
|
|
Loading…
Reference in New Issue