DEV: Add api docs for invite and group update endpoint (#11019)

Documenting a few more endpoints so that our api docs can be
automatically generated. Made a couple other minor changes, like
including the "OK" example for our default success response.
This commit is contained in:
Blake Erickson 2020-10-26 08:55:22 -06:00 committed by GitHub
parent 8d3837c824
commit c9515ede2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 103 additions and 10 deletions

View File

@ -11,9 +11,8 @@ describe 'groups' do
end
path '/admin/groups.json' do
post 'Creates a group' do
tags 'Group'
tags 'Groups'
consumes 'application/json'
parameter name: :group, in: :body, schema: {
type: :object,
@ -22,9 +21,9 @@ describe 'groups' do
type: :object,
properties: {
name: { type: :string },
}, required: [ 'name' ]
}, required: ['name']
}
},
}, required: ['group']
}
produces 'application/json'
@ -74,6 +73,37 @@ describe 'groups' do
end
end
end
end
path '/groups/{id}.json' do
put 'Update a group' do
tags 'Groups'
consumes 'application/json'
parameter name: :id, in: :path, schema: { type: :string }
parameter name: :group, in: :body, schema: {
type: :object,
properties: {
group: {
type: :object,
properties: {
name: { type: :string },
}, required: ['name']
}
}, required: ['group']
}
produces 'application/json'
response '200', 'success response' do
schema type: :object, properties: {
success: { type: :string, example: "OK" }
}
let(:id) { Fabricate(:group).id }
let(:group) { { name: 'awesome' } }
run_test!
end
end
end
end

View File

@ -0,0 +1,63 @@
# frozen_string_literal: true
require 'swagger_helper'
describe 'invites' do
let(:'Api-Key') { Fabricate(:api_key).key }
let(:'Api-Username') { 'system' }
path '/invites.json' do
post 'Invite to site by email' do
tags 'Invites'
consumes 'application/json'
parameter name: 'Api-Key', in: :header, type: :string, required: true
parameter name: 'Api-Username', in: :header, type: :string, required: true
parameter name: :request_body, in: :body, schema: {
type: :object,
properties: {
email: { type: :string },
group_names: { type: :string },
custom_message: { type: :string },
}, required: ['email']
}
produces 'application/json'
response '200', 'success response' do
schema type: :object, properties: {
success: { type: :string, example: "OK" }
}
let(:request_body) { { email: 'not-a-user-yet@example.com' } }
run_test!
end
end
end
path '/invites/link.json' do
post 'Generate an invite link, but do not send an email' do
tags 'Invites'
consumes 'application/json'
parameter name: 'Api-Key', in: :header, type: :string, required: true
parameter name: 'Api-Username', in: :header, type: :string, required: true
parameter name: :request_body, in: :body, schema: {
type: :object,
properties: {
email: { type: :string },
group_names: { type: :string },
custom_message: { type: :string },
}, required: ['email']
}
produces 'application/json'
response '200', 'success response' do
schema type: :string, example: "http://discourse.example.com/invites/token_value"
let(:request_body) { { email: 'not-a-user-yet@example.com' } }
run_test!
end
end
end
end

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
require 'swagger_helper'
describe 'posts' do
describe 'topics' do
let(:'Api-Key') { Fabricate(:api_key).key }
let(:'Api-Username') { 'system' }
@ -526,7 +526,7 @@ describe 'posts' do
produces 'application/json'
response '200', 'topic updated' do
schema type: :object, properties: {
success: { type: :string },
success: { type: :string, example: "OK" },
topic_status_update: { type: :string, nullable: true },
}
@ -872,7 +872,7 @@ describe 'posts' do
produces 'application/json'
response '200', 'topic updated' do
schema type: :object, properties: {
success: { type: :string },
success: { type: :string, example: "OK" }
}
let(:request_body) { { notification_level: '3' } }
@ -904,7 +904,7 @@ describe 'posts' do
produces 'application/json'
response '200', 'topic updated' do
schema type: :object, properties: {
success: { type: :string },
success: { type: :string, example: "OK" }
}
let(:request_body) { { timestamp: '1594291380' } }
@ -946,7 +946,7 @@ describe 'posts' do
produces 'application/json'
response '200', 'topic updated' do
schema type: :object, properties: {
success: { type: :string },
success: { type: :string, example: "OK" },
execute_at: { type: :string },
duration: { type: :string, nullable: true },
based_on_last_post: { type: :boolean },