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