Created
October 16, 2019 15:15
-
-
Save hegeltrigo/6134db15a393132f2279a4db148d48a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
path '/api/v1/projects/{id}' do | |
get 'Get one project' do | |
tags 'Projects' | |
security [ bearer: [] ] | |
consumes 'application/json', 'application/xml' | |
parameter name: :id, :in => :path, :type => :integer | |
response '200', 'get all projects' do | |
it "test skipe" do end | |
# run_test! | |
end | |
response '422', 'invalid request' do | |
it "test skipe" do end | |
# run_test! | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment