add config_spec

This commit is contained in:
Philipp Rothmann 2022-11-21 15:23:46 +01:00
parent a8698d3b49
commit e8303a8b14
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
require 'swagger_helper'
describe 'Navigation API', type: :request do
include ApiHelper
path '/config' do
get 'configuration variables' do
tags 'General'
produces 'application/json'
let(:api_scopes) { ['config:user'] }
response '200', 'success' do
run_test!
end
it_handles_invalid_token_and_scope
end
end
end