class AppPatientCardComponent
Public Class Methods
Source
# File app/components/app_patient_card_component.rb, line 26 def initialize( patient, current_team:, show_parents: true, show_add_parent: false, change_links: {}, remove_links: {}, heading_level: 3, actions: [] ) @patient = patient @current_team = current_team @show_parents = show_parents @show_add_parent = show_add_parent @change_links = change_links @remove_links = remove_links @heading_level = heading_level @actions = actions end