gitlabhq/lib/api.rb

26 lines
500 B
Ruby
Raw Normal View History

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