Sha256: 71fc343e8a528f7b49c67765c44f1335c57290d957699ac81356da993649a689
Contents?: true
Size: 1 KB
Versions: 37
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true require_dependency "renalware/low_clearance" module Renalware module LowClearance class ProfilesController < BaseController def edit render_edit(find_and_authorize_profile) end def update profile = find_and_authorize_profile if profile.update_by(current_user, profile_params) redirect_to patient_low_clearance_dashboard_path, notice: t(".success", model_name: "profile") else flash.now[:error] = failed_msg_for("profile") render_edit(profile) end end private def find_and_authorize_profile (patient.profile || patient.build_profile).tap do |profile| authorize profile end end def render_edit(profile) render :edit, locals: { patient: patient, profile: profile } end def profile_params params.require(:low_clearance_profile).permit(:referrer_id, document: {}) end end end end
Version data entries
37 entries across 37 versions & 1 rubygems