gitlabhq/lib/api/helpers.rb

16 lines
356 B
Ruby
Raw Normal View History

2012-06-27 13:32:56 +02:00
module Gitlab
module APIHelpers
def current_user
@current_user ||= User.find_by_authentication_token(params[:private_token])
end
2012-07-06 15:08:17 +02:00
def user_project
@project ||= current_user.projects.find_by_code(params[:id])
end
2012-06-27 13:32:56 +02:00
def authenticate!
2012-06-29 12:52:20 +02:00
error!({'message' => '401 Unauthorized'}, 401) unless current_user
2012-06-27 13:32:56 +02:00
end
end
end