From 5faf9807968ce9f7f548474afdc31029e57103dc Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Fri, 10 Mar 2023 20:12:55 -0600 Subject: Añade método update al controlador de companies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/api/companies_controller.rb | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'app/controllers/api/companies_controller.rb') diff --git a/app/controllers/api/companies_controller.rb b/app/controllers/api/companies_controller.rb index 4317682..9d6cb1c 100644 --- a/app/controllers/api/companies_controller.rb +++ b/app/controllers/api/companies_controller.rb @@ -17,7 +17,7 @@ module Api render json: serialized_object.serializable_hash, status: :ok and return if @company - render json: { error_message: "No se encontró la compañía #{params[:short_name]}" }, status: :not_found + render json: not_found_error_message, status: :not_found end def create @@ -28,6 +28,18 @@ module Api render json: { error_messages: @company.errors.full_messages }, status: :unprocessable_entity end + def update + @company = Company.find_by(short_name: params[:id]) + + render json: not_found_error_message, status: :not_found and return if @company.nil? + + if @company.update(permitted_params) + render json: serialized_object.serializable_hash, status: :ok + else + render json: { error_messages: @company.errors.full_messages }, status: :unprocessable_entity + end + end + private def serialized_object @@ -41,5 +53,9 @@ module Api def permitted_params params.permit(:name, :country, :short_name, :logo) end + + def not_found_error_message + { error_message: "No se encontró la compañía #{params[:short_name]}"} + end end end -- cgit v1.2.3