summaryrefslogtreecommitdiff
path: root/lib/api/helpers.rb
blob: e7b9a417b0865a2e9449e65452ac675060d1a0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab
  module APIHelpers
    def current_user
      @current_user ||= User.find_by_authentication_token(params[:private_token])
    end

    def user_project
      @project ||= current_user.projects.find_by_code(params[:id])
    end

    def authenticate!
      error!({'message' => '401 Unauthorized'}, 401) unless current_user
    end
  end
end