class PatientSessions::ActivitiesController
Public Instance Methods
Source
# File app/controllers/patient_sessions/activities_controller.rb, line 11 def create if @note.update(note_params) redirect_to session_patient_activity_path(@session, @patient), flash: { success: "Note added" } else render :show, status: :unprocessable_content end end
Source
# File app/controllers/patient_sessions/activities_controller.rb, line 8 def show end