So I'm wondering how people go about this best, essentially I've created a custom model which is used for the settings of the app, so each store will have a record for this.
Now with
useActionForm
useActionForm
you need to pass the ID of this record, but how are people going about retrieving this first (efficiently for speed). Do you run a
useFindFirst
useFindFirst
with tenancy to get the record (and ID) then use it? Just seems a bit messy doing that.