gitlab-org--gitlab-foss/lib/api.rb

28 lines
562 B
Ruby
Raw Normal View History

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