2012-06-29 12:46:01 +02:00
|
|
|
Dir["#{Rails.root}/lib/api/*.rb"].each {|file| require file}
|
2012-06-27 13:32:56 +02:00
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
class API < Grape::API
|
2012-12-21 18:55:39 +01:00
|
|
|
version 'v3', using: :path
|
2012-07-04 09:48:00 +02:00
|
|
|
|
2012-07-05 17:12:09 +02:00
|
|
|
rescue_from ActiveRecord::RecordNotFound do
|
|
|
|
rack_response({'message' => '404 Not found'}.to_json, 404)
|
|
|
|
end
|
|
|
|
|
2012-06-27 13:32:56 +02:00
|
|
|
format :json
|
|
|
|
helpers APIHelpers
|
2013-01-08 22:05:00 +01:00
|
|
|
|
|
|
|
mount Groups
|
2012-06-29 12:46:01 +02:00
|
|
|
mount Users
|
|
|
|
mount Projects
|
2012-07-24 14:19:51 +02:00
|
|
|
mount Issues
|
2012-08-16 20:51:31 +02:00
|
|
|
mount Milestones
|
2012-09-20 16:44:44 +02:00
|
|
|
mount Session
|
2012-10-21 13:00:27 +02:00
|
|
|
mount MergeRequests
|
2012-11-27 20:43:39 +01:00
|
|
|
mount Notes
|
2013-02-04 16:53:43 +01:00
|
|
|
mount Internal
|
2012-06-27 13:32:56 +02:00
|
|
|
end
|
2012-06-27 11:26:16 +02:00
|
|
|
end
|