fix: financial category tag
This commit is contained in:
parent
6bacbe9584
commit
1c5a3c6864
3 changed files with 5 additions and 9 deletions
|
|
@ -14,7 +14,7 @@ describe 'User', type: :request do
|
|||
|
||||
path '/user/financial_transactions' do
|
||||
post 'create new financial transaction (requires enabled self service)' do
|
||||
tags 'User', 'FinancialTransaction'
|
||||
tags "Financial Transaction"
|
||||
consumes 'application/json'
|
||||
produces 'application/json'
|
||||
parameter name: "per_page", in: :query, type: :integer, required: false
|
||||
|
|
@ -105,7 +105,7 @@ describe 'User', type: :request do
|
|||
|
||||
path '/user/financial_transactions/{id}' do
|
||||
get 'find financial transaction by id' do
|
||||
tags 'User', 'FinancialTransaction'
|
||||
tags 'User', 'Financial Transaction'
|
||||
produces 'application/json'
|
||||
parameter name: :id, in: :path, type: :string
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ describe 'User', type: :request do
|
|||
|
||||
path '/user/financial_overview' do
|
||||
get 'financial summary about the currently logged-in user' do
|
||||
tags 'User', 'FinancialTransaction'
|
||||
tags 'User', 'Financial Transaction'
|
||||
produces 'application/json'
|
||||
let(:user) { create :user, :ordergroup }
|
||||
FinancialTransactionClass.create(name: 'TestTransaction')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue