diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-04-26 12:05:18 +0200 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-04-30 11:40:51 +0200 |
commit | 0f593b1c579c272f681696b96a8fc6aa32342ae6 (patch) | |
tree | e208c60558ff3cefc75a8551a3d3804379344162 /lib | |
parent | 507e3fbca30441983322c37408988b6a49f0acc5 (diff) | |
download | gitlab-ce-0f593b1c579c272f681696b96a8fc6aa32342ae6.tar.gz |
Define custom base controller for Doorkeeper
Since we only need the `can?` view helpers there, it's better to
include those in a separate controller.
If we inherit from `ApplicationController` we also need to deal with
authentication, that needs to be done in some, but not all doorkeeper controllers.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/base_doorkeeper_controller.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/gitlab/base_doorkeeper_controller.rb b/lib/gitlab/base_doorkeeper_controller.rb new file mode 100644 index 00000000000..e4227af25d2 --- /dev/null +++ b/lib/gitlab/base_doorkeeper_controller.rb @@ -0,0 +1,8 @@ +# This is a base controller for doorkeeper. +# It adds the `can?` helper used in the views. +module Gitlab + class BaseDoorkeeperController < ActionController::Base + include Gitlab::Allowable + helper_method :can? + end +end |