Skip to content

Instantly share code, notes, and snippets.

@amitaibu
Created March 17, 2025 20:04
Show Gist options
  • Save amitaibu/abe515ad03115a37d4759ba12c61eb33 to your computer and use it in GitHub Desktop.
Save amitaibu/abe515ad03115a37d4759ba12c61eb33 to your computer and use it in GitHub Desktop.
action NewNurseAction = do
pinCode <- randomRIO (1000, 9999)
let nurse = newRecord @Nurse |> set #pinCode pinCode
render NewView { .. }
action ShowNurseAction { nurseId } = do
nurse <- fetch nurseId
refNurseToHealthCenters <- query @RefNurseToHealthCenter
|> filterWhere (#nurseId, nurse.id)
|> fetch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment