summaryrefslogtreecommitdiff
path: root/lib/api/notes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/notes.rb')
-rw-r--r--lib/api/notes.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/notes.rb b/lib/api/notes.rb
index 1bdf7aeb119..f5ddc3a0415 100644
--- a/lib/api/notes.rb
+++ b/lib/api/notes.rb
@@ -25,9 +25,9 @@ module API
params do
requires :noteable_id, type: Integer, desc: 'The ID of the noteable'
optional :order_by, type: String, values: %w[created_at updated_at], default: 'created_at',
- desc: 'Return notes ordered by `created_at` or `updated_at` fields.'
+ desc: _('Return notes ordered by `created_at` or `updated_at` fields.')
optional :sort, type: String, values: %w[asc desc], default: 'desc',
- desc: 'Return notes sorted in `asc` or `desc` order.'
+ desc: _('Return notes sorted in `asc` or `desc` order.')
use :pagination
end
# rubocop: disable CodeReuse/ActiveRecord