From 58ea73873469533075c916725c68069678b0579e Mon Sep 17 00:00:00 2001 From: Beate Quednau Date: Thu, 26 Sep 2024 11:46:20 +0200 Subject: [PATCH] Fix rubocop for profile.api --- app/api/chemotion/profile_api.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/api/chemotion/profile_api.rb b/app/api/chemotion/profile_api.rb index 0f76ddd4ee..06d2009187 100644 --- a/app/api/chemotion/profile_api.rb +++ b/app/api/chemotion/profile_api.rb @@ -16,6 +16,7 @@ def validate_param!(attr_name, params) end end + # rubocop: disable Metrics/ClassLength class ProfileAPI < Grape::API resource :profiles do desc 'Return the profile of the current_user' @@ -254,5 +255,6 @@ class ProfileAPI < Grape::API end end end + # rubocop: enable Metrics/ClassLength end # rubocop: enable Style/MultilineIfModifier