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

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